March 28, 2016

作業範例裡的merge()-1

  • By default the data frames are merged on the columns with names they both have
  • For example: Team, TotalPoints
  • Use by, by.x, by.y to assign the matching column
  • Inner join
  • Use all, all.x, all.y to implement outer (all/left/right) join
  • ?merge
  • merge(x, y, by=)

作業範例裡的merge()-2

df1 = data.frame(CustomerId = c(1:4), 
                 Product = c(rep("Toaster", 2), rep("Radio", 2)))
df2 = data.frame(CustomerId = c(2,4), State = c("Alabama","Ohio"))
df1
##   CustomerId Product
## 1          1 Toaster
## 2          2 Toaster
## 3          3   Radio
## 4          4   Radio
df2
##   CustomerId   State
## 1          2 Alabama
## 2          4    Ohio

作業範例裡的merge()-3

merge(x = df1, y = df2, by = "CustomerId")
##   CustomerId Product   State
## 1          2 Toaster Alabama
## 2          4   Radio    Ohio
merge(x = df1, y = df2, by = "CustomerId", all = TRUE)
##   CustomerId Product   State
## 1          1 Toaster    <NA>
## 2          2 Toaster Alabama
## 3          3   Radio    <NA>
## 4          4   Radio    Ohio

作業範例裡的merge()-4

merge(x = df1, y = df2, by = "CustomerId", all.x = TRUE)
##   CustomerId Product   State
## 1          1 Toaster    <NA>
## 2          2 Toaster Alabama
## 3          3   Radio    <NA>
## 4          4   Radio    Ohio
merge(x = df1, y = df2, by = "CustomerId", all.y = TRUE)
##   CustomerId Product   State
## 1          2 Toaster Alabama
## 2          4   Radio    Ohio

作業範例裡的Bug

誰投三分球會百發百中啊……

if (!require('SportsAnalytics')){
    install.packages("SportsAnalytics")
    library(SportsAnalytics)
}
NBA1415<-fetch_NBAPlayerStatistics("14-15")
NBA1415$ThreesP<-
    round(NBA1415$ThreesMade/NBA1415$ThreesAttempted,digits=3)
ThreesPMax<-merge(NBA1415,aggregate(ThreesP~Team,NBA1415,max))
ThreesPMax[order(ThreesPMax$ThreesP,decreasing=T),
           c("Team","Name","Position","ThreesP","ThreesMade")]
##    Team             Name Position ThreesP ThreesMade
## 4   CHA      Cody Zeller        C   1.000          1
## 18  MIL      John Henson        C   1.000          1
## 30  TOR    Bruno Caboclo       SF   0.667          2
## 14  LAL    Dwight Buycks       PG   0.636          7
## 27  POR    Victor Claver       PF   0.545          6
## 20  NOR     Luke Babbitt       SF   0.513         59
## 8   DEN  Jamaal Franklin       SG   0.500          1
## 11  HOU    Dwight Howard        C   0.500          1
## 13  LAC    Lester Hudson       SG   0.500          3
## 25  PHO      Earl Barron       PF   0.500          2
## 26  PHO     Jerel Mcneal       SG   0.500          1
## 28  SAC   David Stockton       PG   0.500          1
## 1   ATL      Kyle Korver       SG   0.493        221
## 9   DET  Tayshaun Prince       SF   0.463         31
## 5   CHI        Pau Gasol       PF   0.462         12
## 2   BOS     Luigi Datome       SF   0.450         18
## 10  GSW    Stephen Curry       PG   0.443        286
## 22  OKL   Anthony Morrow       SG   0.434        141
## 17  MIA    Shannon Brown       PG   0.429          3
## 29  SAN      Tony Parker       PG   0.427         38
## 7   DAL Richar Jefferson       SF   0.426         66
## 6   CLE     Kyrie Irving       PG   0.416        155
## 21  NYK    Jose Calderon       PG   0.415         59
## 12  IND      Paul George       SF   0.409          9
## 32  WAS     Bradley Beal       SG   0.409        106
## 24  PHI  Hollis Thompson       SG   0.401        115
## 15  MEM     Jordan Adams       SG   0.400         10
## 16  MEM     Courtney Lee       SG   0.400         90
## 31  UTA     Jeremy Evans       SF   0.400          2
## 23  ORL    Channing Frye       PF   0.393        136
## 19  MIN Shabazz Muhammad       SF   0.392         20
## 3   BRO   Deron Williams       PG   0.367         87

別掉入%陷阱

做Final Project的時候,別寫中鋒投三分全世界最準的這種結論…..

ThreesPMaxNew<-merge(NBA1415,
                     aggregate(ThreesP~Team,
                               NBA1415[NBA1415$ThreesMade>mean(NBA1415$ThreesMade),],
                               max))
ThreesPMaxNew[order(ThreesPMaxNew$ThreesP,decreasing=T),
              c("Team","Name","Position","ThreesP","ThreesMade")]
##    Team             Name Position ThreesP ThreesMade
## 21  NOR     Luke Babbitt       SF   0.513         59
## 1   ATL      Kyle Korver       SG   0.493        221
## 10  GSW    Stephen Curry       PG   0.443        286
## 13  LAC      J.j. Redick       SG   0.437        200
## 23  OKL   Anthony Morrow       SG   0.434        141
## 7   DAL Richar Jefferson       SF   0.426         66
## 27  POR   Meyers Leonard        C   0.420         47
## 29  SAN      Danny Green       SG   0.418        191
## 6   CLE     Kyrie Irving       PG   0.416        155
## 22  NYK    Jose Calderon       PG   0.415         59
## 32  WAS     Bradley Beal       SG   0.409        106
## 5   CHI    Mike Dunleavy       SF   0.407        107
## 19  MIL  Khris Middleton       SF   0.407        109
## 12  IND     Damjan Rudez       SF   0.406         69
## 25  PHI  Hollis Thompson       SG   0.401        115
## 15  MEM     Jordan Adams       SG   0.400         10
## 16  MEM     Courtney Lee       SG   0.400         90
## 24  ORL    Channing Frye       PF   0.393        136
## 20  MIN     Kevin Martin       SG   0.391         75
## 11  HOU      Jason Terry       SG   0.390        126
## 26  PHO   Brandon Knight       PG   0.389        125
## 2   BOS    Jonas Jerebko       PF   0.386         54
## 9   DET     Caron Butler       SF   0.379         83
## 30  TOR  Greivis Vasquez       PG   0.379        133
## 17  MIA       Chris Bosh       PF   0.375         63
## 18  MIA    Tyler Johnson       SG   0.375         18
## 28  SAC  Darren Collison       PG   0.373         60
## 14  LAL  Wayne Ellington       SG   0.370         90
## 3   BRO   Deron Williams       PG   0.367         87
## 31  UTA      Rodney Hood       SG   0.365         62
## 4   CHA     Troy Daniels       SG   0.364         43
## 8   DEN       Randy Foye       SG   0.357         94

NBA Data Analysis

NBA Data Analysis

NBA Data Analysis

Open Data Analysis

Open Data Analysis

Open Data Analysis

apply家族- 把函數功能當成參數

  • apply的第一個參數會直接帶入函數的第一個參數,mat1會帶入函數的參數x
  • 對第一個參數,會逐個計算(For)。若是Data Frame,會逐列(Column)作計算
mat1 <- data.frame(1:4,5:8,9:12,13:16) #4個Columns,執行4次
mat1
##   X1.4 X5.8 X9.12 X13.16
## 1    1    5     9     13
## 2    2    6    10     14
## 3    3    7    11     15
## 4    4    8    12     16
sapply(mat1, function(x, y) {sum(x) + y}, y = 5)
##   X1.4   X5.8  X9.12 X13.16 
##     15     31     47     63

apply家族- 把函數功能當成參數

  • apply的第一個參數會直接帶入函數的第一個參數
  • 對第一個參數,會逐個計算(For)
  • 若是向量,就逐個帶入
  • 範例:1:3會帶入函數的參數a
lapply(1:3, function(a, b) {a*b}, b=2) #3個數字的向量,執行3次
## [[1]]
## [1] 2
## 
## [[2]]
## [1] 4
## 
## [[3]]
## [1] 6

用lapply處理List

  • 範例:1:6會帶入函數的參數i,length(list2)=5
list1<-list(1,1:2,1:3,1:4,1:5); list2<-list(2,2:3,2:4,2:5,2:6)
lapply(1:length(list2), function(i, x, y) {x[[i]] + y[[i]]},
       x = list1, y = list2) #5個數字的向量,執行5次
## [[1]]
## [1] 3
## 
## [[2]]
## [1] 3 5
## 
## [[3]]
## [1] 3 5 7
## 
## [[4]]
## [1] 3 5 7 9
## 
## [[5]]
## [1]  3  5  7  9 11

SHA 版本碼

Repo URL

.md, .R… URL

每次開始前

  • 打開GitHub桌面版
  • 打GitHub帳密與Git config資料
  • Clone上次交的作業回本機端(存到桌面)
    • 提示:左上角的+號,選Clone
  • 點兩下Clone回來的資料夾裡面的.Rproj
  • 下載今天要用的R Code

Reading Data -2

JSON (Javascript Object Notation)

  • 輕量級的資料交換語言 Wiki
  • Data from application programming interfaces (APIs)
  • JavaScript、Java、Node.js應用
  • 一些NoSQL非關係型資料庫也用JSON儲存格資料:MongoDB
  • Data stored as
    • Numbers (double)
    • Strings (double quoted)
    • Boolean (true or false)
    • Array (ordered, comma separated enclosed in square brackets [])
    • Object (unorderd, comma separated collection of key:value pairs in curley brackets {})

Example JSON file

Example JSON file from API

Example JSON file from API

Reading data from JSON {jsonlite package}

if (!require('jsonlite')){
    install.packages("jsonlite")
    library(jsonlite)
}
if (!require('RCurl')){
    install.packages("RCurl")
    library(RCurl)
}
WaterData<-fromJSON(getURL("http://data.taipei/opendata/datalist/apiAccess?scope=resourceAquire&rid=190796c8-7c56-42e0-8068-39242b8ec927"))
names(WaterData)
## [1] "result"

Nested objects in JSON

names(WaterData$result)
## [1] "offset"  "limit"   "count"   "sort"    "results"
WaterDataFrame<-WaterData$result$results
WaterDataFrame$longitude<-as.numeric(WaterDataFrame$longitude)
WaterDataFrame$latitude<-as.numeric(WaterDataFrame$latitude)
WaterDataFrame$qua_cntu<-as.numeric(WaterDataFrame$qua_cntu)
WaterDataFrame
##    _id update_date update_time       qua_id                     code_name
## 1    1  2016-03-27  14:00:00   CS00                            雙溪淨水場
## 2    2  2016-03-27  14:00:00   CS01                              衛理女中
## 3    3  2016-03-27  14:00:00   CS02              雙溪國小                
## 4    4  2016-03-27  14:00:00   CS03                            華興加壓站
## 5    5  2016-03-27  14:00:00   CX00                            長興淨水場
## 6    6  2016-03-27  14:00:00   CX02                              市政大樓
## 7    7  2016-03-27  14:00:00   CX03                                市議會
## 8    8  2016-03-27  14:00:00   CX04                        捷運忠孝復興站
## 9    9  2016-03-27  14:00:00   CX05                              南港高工
## 10  10  2016-03-27  14:00:00   CX06                            南港加壓站
## 11  11  2016-03-27  14:00:00   CX07                            挹翠加壓站
## 12  12  2016-03-27  14:00:00   CX08              敦化國中                
## 13  13  2016-03-27  14:00:00   GG00                            公館淨水場
## 14  14  2016-03-27  14:00:00   GG01                          捷運台北車站
## 15  15  2016-03-27  14:00:00   GG02                      捷運中正紀念堂站
## 16  16  2016-03-27  14:00:00   GG03                              萬華國中
## 17  17  2016-03-27  14:00:00   GG04                        華江社區配水池
## 18  18  2016-03-27  14:00:00   GG05                              西門國小
## 19  19  2016-03-27  14:00:00   GG06                              忠孝國小
## 20  20  2016-03-27  14:00:00   GG07                              螢橋國小
## 21  21  2016-03-27  14:00:00   JT00             直潭淨水場               
## 22  22  2016-03-27  14:00:00   JT02                          伸仗板配水池
## 23  23  2016-03-27  14:00:00   JT10                            中和加壓站
## 24  24  2016-03-27  14:00:00   JT11                            安康加壓站
## 25  25  2016-03-27  14:00:00   JT12                                頂溪站
## 26  26  2016-03-27  14:00:00   JT13                              中和國小
## 27  27  2016-03-27  14:00:00   JT14                              積穗國小
## 28  28  2016-03-27  14:00:00   JT15                          捷運大坪林站
## 29  29  2016-03-27  14:00:00   JT16                          十二張加壓站
## 30  30  2016-03-27  14:00:00   JT17                              景美女中
## 31  31  2016-03-27  14:00:00   JT18                            木柵動物園
## 32  32  2016-03-27  14:00:00   JT20                            公館加壓站
## 33  33  2016-03-27  14:00:00   JT21                        萬芳二號配水池
## 34  34  2016-03-27  14:00:00   JT22                          指南二加壓站
## 35  35  2016-03-27  14:00:00   JT23                        木柵二期配水池
## 36  36  2016-03-27  14:00:00   JT24                            三重加壓站
## 37  37  2016-03-27  14:00:00   JT25                              新北高中
## 38  38  2016-03-27  14:00:00   JT26                          指南六加壓站
## 39  39  2016-03-27  14:00:00   JT30                            大同加壓站
## 40  40  2016-03-27  14:00:00   JT31                              麗山國中
## 41  41  2016-03-27  14:00:00   JT32                              重慶國中
## 42  42  2016-03-27  14:00:00   JT33                      台北海洋技術學院
## 43  43  2016-03-27  14:00:00   JT34                              介壽國中
## 44  44  2016-03-27  14:00:00   JT35                              士林國中
## 45  45  2016-03-27  14:00:00   JT36                              陽明高中
## 46  46  2016-03-27  14:00:00   JT37                            捷運石牌站
## 47  47  2016-03-27  14:00:00   JT38                            天母加壓站
## 48  48  2016-03-27  14:00:00   JT39                              關渡國小
## 49  49  2016-03-27  14:00:00   JT40                            捷運淡水站
## 50  50  2016-03-27  14:00:00   JT41                         北投第4配水池
## 51  51  2016-03-27  14:00:00   JT42                            北投加壓站
## 52  52  2016-03-27  14:00:00   JT50                            松山加壓站
## 53  53  2016-03-27  14:00:00   JT51                          內溝里加壓站
## 54  54  2016-03-27  14:00:00   JT52                              潭美國小
## 55  55  2016-03-27  14:00:00   JT53                              東湖國中
## 56  56  2016-03-27  14:00:00   JT54                            民生加壓站
## 57  57  2016-03-27  14:00:00   JT55                       興隆公營住宅1區
## 58  58  2016-03-27  14:00:00   YM00                            陽明淨水場
## 59  59  2016-03-27  14:00:00   YM01                隧道                  
## 60  60  2016-03-27  14:00:00   YM02         中正路配水池                 
## 61  61  2016-03-27  14:00:00   YM03               中山樓                 
## 62  62  2016-03-27  14:00:00   YM04                          鹿角坑(三加)
## 63  63  2016-03-27  14:00:00   YM05                              泉源國小
## 64  64  2016-03-27  14:00:00   YM06                          三角埔加壓站
##    longitude latitude qua_cntu qua_cl qua_ph
## 1   121.5609 25.11574     0.01   0.51    7.1
## 2   121.5440 25.10325     0.11   0.31    7.3
## 3   121.5556 25.10763     0.06   0.33    7.2
## 4   121.5348 25.10356     0.26   0.31      7
## 5   121.5404 25.01633     0.03   0.43    6.8
## 6   121.5566 25.04250     0.03   0.41    7.2
## 7   121.5536 25.04001     0.04   0.39      7
## 8   121.5355 25.04251     0.04   0.47    7.2
## 9   121.5989 25.05787     0.06   0.41    7.1
## 10  121.6083 25.04994     0.02   0.48      7
## 11  121.5662 25.02339     0.06   0.36    7.2
## 12  121.5385 25.05305     0.03    0.5    7.2
## 13  121.5222 25.01421     0.05   0.48      7
## 14  121.5095 25.04860     0.05   0.47      7
## 15  121.5120 25.03667     0.04   0.48    6.9
## 16  121.4904 25.03069     0.03   0.46      7
## 17  121.4848 25.03651     0.07   0.44      7
## 18  121.4954 25.04475    -9.00     -9     -9
## 19  121.5233 25.04445     0.03   0.43    7.1
## 20  121.5068 25.02738     0.06   0.49    7.1
## 21  121.5254 24.94578     0.07   0.53    6.8
## 22  121.5350 24.93163     0.08   0.54    7.1
## 23  121.5125 24.99116     0.03   0.54    6.9
## 24  121.5004 24.96287     0.07   0.56    6.9
## 25  121.5072 25.01439     0.06   0.48      7
## 26  121.4925 25.00055     0.04    0.5      7
## 27  121.4734 25.00029     0.05    0.4    7.2
## 28  121.5334 24.98410     0.04   0.47    6.8
## 29  121.5414 24.96792     0.09   0.54      7
## 30  121.5480 24.98227     0.05   0.49      7
## 31  121.5730 25.00022     0.05   0.48      7
## 32  121.5221 25.01300     0.08   0.51    6.8
## 33  121.5579 25.00461     0.04   0.47    6.9
## 34  121.5732 24.97858     0.06   0.41      7
## 35  121.5782 24.98869     0.07   0.47    7.1
## 36  121.4857 25.06458     0.07   0.47    6.7
## 37  121.4825 25.05676     0.06   0.44    6.9
## 38  121.5790 24.96866     0.07   0.56    7.6
## 39  121.5211 25.07032     0.05   0.51    6.9
## 40  121.5642 25.08504     0.04    0.5    7.1
## 41  121.5099 25.07802     0.05   0.44    7.1
## 42  121.4627 25.10985     0.06   0.43    7.7
## 43  121.5483 25.05794     0.14    0.3    6.9
## 44  121.5081 25.09652     0.03   0.44      7
## 45  121.5089 25.09335     0.05    0.4    6.9
## 46  121.5074 25.11584     0.06   0.49    6.9
## 47  121.5253 25.12182     0.04   0.49    6.9
## 48  121.4582 25.12799     0.02   0.48    7.1
## 49  121.4373 25.16947     0.04   0.43    6.8
## 50  121.4965 25.14770    -9.00     -9     -9
## 51  121.4932 25.12045     0.05   0.44    6.8
## 52  121.5597 25.06639     0.04   0.53    6.8
## 53  121.6156 25.08017     0.06   0.48    6.8
## 54  121.5825 25.06248     0.07   0.49    7.1
## 55  121.5809 25.07750     0.09   0.31    7.1
## 56  121.5419 25.14058     0.04   0.51      7
## 57  121.5581 24.98833     0.02    0.4    7.1
## 58  121.5239 25.15261     0.01   0.46    7.3
## 59  121.5030 25.14582     0.01    0.5    6.7
## 60  121.5362 25.15329     0.03    0.5    6.8
## 61  121.5451 25.15725     0.14   0.48    7.5
## 62  121.5475 25.18501     0.49   0.57    7.8
## 63  121.5160 25.15081     0.87   0.28      8
## 64  121.5256 25.12964    -9.00     -9     -9

Data Frame -> JSON

myjson <- toJSON(iris, pretty=TRUE)
cat(myjson)
## [
##   {
##     "Sepal.Length": 5.1,
##     "Sepal.Width": 3.5,
##     "Petal.Length": 1.4,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 4.9,
##     "Sepal.Width": 3,
##     "Petal.Length": 1.4,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 4.7,
##     "Sepal.Width": 3.2,
##     "Petal.Length": 1.3,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 4.6,
##     "Sepal.Width": 3.1,
##     "Petal.Length": 1.5,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5,
##     "Sepal.Width": 3.6,
##     "Petal.Length": 1.4,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5.4,
##     "Sepal.Width": 3.9,
##     "Petal.Length": 1.7,
##     "Petal.Width": 0.4,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 4.6,
##     "Sepal.Width": 3.4,
##     "Petal.Length": 1.4,
##     "Petal.Width": 0.3,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5,
##     "Sepal.Width": 3.4,
##     "Petal.Length": 1.5,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 4.4,
##     "Sepal.Width": 2.9,
##     "Petal.Length": 1.4,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 4.9,
##     "Sepal.Width": 3.1,
##     "Petal.Length": 1.5,
##     "Petal.Width": 0.1,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5.4,
##     "Sepal.Width": 3.7,
##     "Petal.Length": 1.5,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 4.8,
##     "Sepal.Width": 3.4,
##     "Petal.Length": 1.6,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 4.8,
##     "Sepal.Width": 3,
##     "Petal.Length": 1.4,
##     "Petal.Width": 0.1,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 4.3,
##     "Sepal.Width": 3,
##     "Petal.Length": 1.1,
##     "Petal.Width": 0.1,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5.8,
##     "Sepal.Width": 4,
##     "Petal.Length": 1.2,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5.7,
##     "Sepal.Width": 4.4,
##     "Petal.Length": 1.5,
##     "Petal.Width": 0.4,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5.4,
##     "Sepal.Width": 3.9,
##     "Petal.Length": 1.3,
##     "Petal.Width": 0.4,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5.1,
##     "Sepal.Width": 3.5,
##     "Petal.Length": 1.4,
##     "Petal.Width": 0.3,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5.7,
##     "Sepal.Width": 3.8,
##     "Petal.Length": 1.7,
##     "Petal.Width": 0.3,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5.1,
##     "Sepal.Width": 3.8,
##     "Petal.Length": 1.5,
##     "Petal.Width": 0.3,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5.4,
##     "Sepal.Width": 3.4,
##     "Petal.Length": 1.7,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5.1,
##     "Sepal.Width": 3.7,
##     "Petal.Length": 1.5,
##     "Petal.Width": 0.4,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 4.6,
##     "Sepal.Width": 3.6,
##     "Petal.Length": 1,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5.1,
##     "Sepal.Width": 3.3,
##     "Petal.Length": 1.7,
##     "Petal.Width": 0.5,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 4.8,
##     "Sepal.Width": 3.4,
##     "Petal.Length": 1.9,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5,
##     "Sepal.Width": 3,
##     "Petal.Length": 1.6,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5,
##     "Sepal.Width": 3.4,
##     "Petal.Length": 1.6,
##     "Petal.Width": 0.4,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5.2,
##     "Sepal.Width": 3.5,
##     "Petal.Length": 1.5,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5.2,
##     "Sepal.Width": 3.4,
##     "Petal.Length": 1.4,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 4.7,
##     "Sepal.Width": 3.2,
##     "Petal.Length": 1.6,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 4.8,
##     "Sepal.Width": 3.1,
##     "Petal.Length": 1.6,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5.4,
##     "Sepal.Width": 3.4,
##     "Petal.Length": 1.5,
##     "Petal.Width": 0.4,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5.2,
##     "Sepal.Width": 4.1,
##     "Petal.Length": 1.5,
##     "Petal.Width": 0.1,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5.5,
##     "Sepal.Width": 4.2,
##     "Petal.Length": 1.4,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 4.9,
##     "Sepal.Width": 3.1,
##     "Petal.Length": 1.5,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5,
##     "Sepal.Width": 3.2,
##     "Petal.Length": 1.2,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5.5,
##     "Sepal.Width": 3.5,
##     "Petal.Length": 1.3,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 4.9,
##     "Sepal.Width": 3.6,
##     "Petal.Length": 1.4,
##     "Petal.Width": 0.1,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 4.4,
##     "Sepal.Width": 3,
##     "Petal.Length": 1.3,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5.1,
##     "Sepal.Width": 3.4,
##     "Petal.Length": 1.5,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5,
##     "Sepal.Width": 3.5,
##     "Petal.Length": 1.3,
##     "Petal.Width": 0.3,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 4.5,
##     "Sepal.Width": 2.3,
##     "Petal.Length": 1.3,
##     "Petal.Width": 0.3,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 4.4,
##     "Sepal.Width": 3.2,
##     "Petal.Length": 1.3,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5,
##     "Sepal.Width": 3.5,
##     "Petal.Length": 1.6,
##     "Petal.Width": 0.6,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5.1,
##     "Sepal.Width": 3.8,
##     "Petal.Length": 1.9,
##     "Petal.Width": 0.4,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 4.8,
##     "Sepal.Width": 3,
##     "Petal.Length": 1.4,
##     "Petal.Width": 0.3,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5.1,
##     "Sepal.Width": 3.8,
##     "Petal.Length": 1.6,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 4.6,
##     "Sepal.Width": 3.2,
##     "Petal.Length": 1.4,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5.3,
##     "Sepal.Width": 3.7,
##     "Petal.Length": 1.5,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 5,
##     "Sepal.Width": 3.3,
##     "Petal.Length": 1.4,
##     "Petal.Width": 0.2,
##     "Species": "setosa"
##   },
##   {
##     "Sepal.Length": 7,
##     "Sepal.Width": 3.2,
##     "Petal.Length": 4.7,
##     "Petal.Width": 1.4,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 6.4,
##     "Sepal.Width": 3.2,
##     "Petal.Length": 4.5,
##     "Petal.Width": 1.5,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 6.9,
##     "Sepal.Width": 3.1,
##     "Petal.Length": 4.9,
##     "Petal.Width": 1.5,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 5.5,
##     "Sepal.Width": 2.3,
##     "Petal.Length": 4,
##     "Petal.Width": 1.3,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 6.5,
##     "Sepal.Width": 2.8,
##     "Petal.Length": 4.6,
##     "Petal.Width": 1.5,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 5.7,
##     "Sepal.Width": 2.8,
##     "Petal.Length": 4.5,
##     "Petal.Width": 1.3,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 6.3,
##     "Sepal.Width": 3.3,
##     "Petal.Length": 4.7,
##     "Petal.Width": 1.6,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 4.9,
##     "Sepal.Width": 2.4,
##     "Petal.Length": 3.3,
##     "Petal.Width": 1,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 6.6,
##     "Sepal.Width": 2.9,
##     "Petal.Length": 4.6,
##     "Petal.Width": 1.3,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 5.2,
##     "Sepal.Width": 2.7,
##     "Petal.Length": 3.9,
##     "Petal.Width": 1.4,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 5,
##     "Sepal.Width": 2,
##     "Petal.Length": 3.5,
##     "Petal.Width": 1,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 5.9,
##     "Sepal.Width": 3,
##     "Petal.Length": 4.2,
##     "Petal.Width": 1.5,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 6,
##     "Sepal.Width": 2.2,
##     "Petal.Length": 4,
##     "Petal.Width": 1,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 6.1,
##     "Sepal.Width": 2.9,
##     "Petal.Length": 4.7,
##     "Petal.Width": 1.4,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 5.6,
##     "Sepal.Width": 2.9,
##     "Petal.Length": 3.6,
##     "Petal.Width": 1.3,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 6.7,
##     "Sepal.Width": 3.1,
##     "Petal.Length": 4.4,
##     "Petal.Width": 1.4,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 5.6,
##     "Sepal.Width": 3,
##     "Petal.Length": 4.5,
##     "Petal.Width": 1.5,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 5.8,
##     "Sepal.Width": 2.7,
##     "Petal.Length": 4.1,
##     "Petal.Width": 1,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 6.2,
##     "Sepal.Width": 2.2,
##     "Petal.Length": 4.5,
##     "Petal.Width": 1.5,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 5.6,
##     "Sepal.Width": 2.5,
##     "Petal.Length": 3.9,
##     "Petal.Width": 1.1,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 5.9,
##     "Sepal.Width": 3.2,
##     "Petal.Length": 4.8,
##     "Petal.Width": 1.8,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 6.1,
##     "Sepal.Width": 2.8,
##     "Petal.Length": 4,
##     "Petal.Width": 1.3,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 6.3,
##     "Sepal.Width": 2.5,
##     "Petal.Length": 4.9,
##     "Petal.Width": 1.5,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 6.1,
##     "Sepal.Width": 2.8,
##     "Petal.Length": 4.7,
##     "Petal.Width": 1.2,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 6.4,
##     "Sepal.Width": 2.9,
##     "Petal.Length": 4.3,
##     "Petal.Width": 1.3,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 6.6,
##     "Sepal.Width": 3,
##     "Petal.Length": 4.4,
##     "Petal.Width": 1.4,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 6.8,
##     "Sepal.Width": 2.8,
##     "Petal.Length": 4.8,
##     "Petal.Width": 1.4,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 6.7,
##     "Sepal.Width": 3,
##     "Petal.Length": 5,
##     "Petal.Width": 1.7,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 6,
##     "Sepal.Width": 2.9,
##     "Petal.Length": 4.5,
##     "Petal.Width": 1.5,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 5.7,
##     "Sepal.Width": 2.6,
##     "Petal.Length": 3.5,
##     "Petal.Width": 1,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 5.5,
##     "Sepal.Width": 2.4,
##     "Petal.Length": 3.8,
##     "Petal.Width": 1.1,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 5.5,
##     "Sepal.Width": 2.4,
##     "Petal.Length": 3.7,
##     "Petal.Width": 1,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 5.8,
##     "Sepal.Width": 2.7,
##     "Petal.Length": 3.9,
##     "Petal.Width": 1.2,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 6,
##     "Sepal.Width": 2.7,
##     "Petal.Length": 5.1,
##     "Petal.Width": 1.6,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 5.4,
##     "Sepal.Width": 3,
##     "Petal.Length": 4.5,
##     "Petal.Width": 1.5,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 6,
##     "Sepal.Width": 3.4,
##     "Petal.Length": 4.5,
##     "Petal.Width": 1.6,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 6.7,
##     "Sepal.Width": 3.1,
##     "Petal.Length": 4.7,
##     "Petal.Width": 1.5,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 6.3,
##     "Sepal.Width": 2.3,
##     "Petal.Length": 4.4,
##     "Petal.Width": 1.3,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 5.6,
##     "Sepal.Width": 3,
##     "Petal.Length": 4.1,
##     "Petal.Width": 1.3,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 5.5,
##     "Sepal.Width": 2.5,
##     "Petal.Length": 4,
##     "Petal.Width": 1.3,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 5.5,
##     "Sepal.Width": 2.6,
##     "Petal.Length": 4.4,
##     "Petal.Width": 1.2,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 6.1,
##     "Sepal.Width": 3,
##     "Petal.Length": 4.6,
##     "Petal.Width": 1.4,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 5.8,
##     "Sepal.Width": 2.6,
##     "Petal.Length": 4,
##     "Petal.Width": 1.2,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 5,
##     "Sepal.Width": 2.3,
##     "Petal.Length": 3.3,
##     "Petal.Width": 1,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 5.6,
##     "Sepal.Width": 2.7,
##     "Petal.Length": 4.2,
##     "Petal.Width": 1.3,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 5.7,
##     "Sepal.Width": 3,
##     "Petal.Length": 4.2,
##     "Petal.Width": 1.2,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 5.7,
##     "Sepal.Width": 2.9,
##     "Petal.Length": 4.2,
##     "Petal.Width": 1.3,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 6.2,
##     "Sepal.Width": 2.9,
##     "Petal.Length": 4.3,
##     "Petal.Width": 1.3,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 5.1,
##     "Sepal.Width": 2.5,
##     "Petal.Length": 3,
##     "Petal.Width": 1.1,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 5.7,
##     "Sepal.Width": 2.8,
##     "Petal.Length": 4.1,
##     "Petal.Width": 1.3,
##     "Species": "versicolor"
##   },
##   {
##     "Sepal.Length": 6.3,
##     "Sepal.Width": 3.3,
##     "Petal.Length": 6,
##     "Petal.Width": 2.5,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 5.8,
##     "Sepal.Width": 2.7,
##     "Petal.Length": 5.1,
##     "Petal.Width": 1.9,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 7.1,
##     "Sepal.Width": 3,
##     "Petal.Length": 5.9,
##     "Petal.Width": 2.1,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.3,
##     "Sepal.Width": 2.9,
##     "Petal.Length": 5.6,
##     "Petal.Width": 1.8,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.5,
##     "Sepal.Width": 3,
##     "Petal.Length": 5.8,
##     "Petal.Width": 2.2,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 7.6,
##     "Sepal.Width": 3,
##     "Petal.Length": 6.6,
##     "Petal.Width": 2.1,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 4.9,
##     "Sepal.Width": 2.5,
##     "Petal.Length": 4.5,
##     "Petal.Width": 1.7,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 7.3,
##     "Sepal.Width": 2.9,
##     "Petal.Length": 6.3,
##     "Petal.Width": 1.8,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.7,
##     "Sepal.Width": 2.5,
##     "Petal.Length": 5.8,
##     "Petal.Width": 1.8,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 7.2,
##     "Sepal.Width": 3.6,
##     "Petal.Length": 6.1,
##     "Petal.Width": 2.5,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.5,
##     "Sepal.Width": 3.2,
##     "Petal.Length": 5.1,
##     "Petal.Width": 2,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.4,
##     "Sepal.Width": 2.7,
##     "Petal.Length": 5.3,
##     "Petal.Width": 1.9,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.8,
##     "Sepal.Width": 3,
##     "Petal.Length": 5.5,
##     "Petal.Width": 2.1,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 5.7,
##     "Sepal.Width": 2.5,
##     "Petal.Length": 5,
##     "Petal.Width": 2,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 5.8,
##     "Sepal.Width": 2.8,
##     "Petal.Length": 5.1,
##     "Petal.Width": 2.4,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.4,
##     "Sepal.Width": 3.2,
##     "Petal.Length": 5.3,
##     "Petal.Width": 2.3,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.5,
##     "Sepal.Width": 3,
##     "Petal.Length": 5.5,
##     "Petal.Width": 1.8,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 7.7,
##     "Sepal.Width": 3.8,
##     "Petal.Length": 6.7,
##     "Petal.Width": 2.2,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 7.7,
##     "Sepal.Width": 2.6,
##     "Petal.Length": 6.9,
##     "Petal.Width": 2.3,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6,
##     "Sepal.Width": 2.2,
##     "Petal.Length": 5,
##     "Petal.Width": 1.5,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.9,
##     "Sepal.Width": 3.2,
##     "Petal.Length": 5.7,
##     "Petal.Width": 2.3,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 5.6,
##     "Sepal.Width": 2.8,
##     "Petal.Length": 4.9,
##     "Petal.Width": 2,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 7.7,
##     "Sepal.Width": 2.8,
##     "Petal.Length": 6.7,
##     "Petal.Width": 2,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.3,
##     "Sepal.Width": 2.7,
##     "Petal.Length": 4.9,
##     "Petal.Width": 1.8,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.7,
##     "Sepal.Width": 3.3,
##     "Petal.Length": 5.7,
##     "Petal.Width": 2.1,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 7.2,
##     "Sepal.Width": 3.2,
##     "Petal.Length": 6,
##     "Petal.Width": 1.8,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.2,
##     "Sepal.Width": 2.8,
##     "Petal.Length": 4.8,
##     "Petal.Width": 1.8,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.1,
##     "Sepal.Width": 3,
##     "Petal.Length": 4.9,
##     "Petal.Width": 1.8,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.4,
##     "Sepal.Width": 2.8,
##     "Petal.Length": 5.6,
##     "Petal.Width": 2.1,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 7.2,
##     "Sepal.Width": 3,
##     "Petal.Length": 5.8,
##     "Petal.Width": 1.6,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 7.4,
##     "Sepal.Width": 2.8,
##     "Petal.Length": 6.1,
##     "Petal.Width": 1.9,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 7.9,
##     "Sepal.Width": 3.8,
##     "Petal.Length": 6.4,
##     "Petal.Width": 2,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.4,
##     "Sepal.Width": 2.8,
##     "Petal.Length": 5.6,
##     "Petal.Width": 2.2,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.3,
##     "Sepal.Width": 2.8,
##     "Petal.Length": 5.1,
##     "Petal.Width": 1.5,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.1,
##     "Sepal.Width": 2.6,
##     "Petal.Length": 5.6,
##     "Petal.Width": 1.4,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 7.7,
##     "Sepal.Width": 3,
##     "Petal.Length": 6.1,
##     "Petal.Width": 2.3,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.3,
##     "Sepal.Width": 3.4,
##     "Petal.Length": 5.6,
##     "Petal.Width": 2.4,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.4,
##     "Sepal.Width": 3.1,
##     "Petal.Length": 5.5,
##     "Petal.Width": 1.8,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6,
##     "Sepal.Width": 3,
##     "Petal.Length": 4.8,
##     "Petal.Width": 1.8,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.9,
##     "Sepal.Width": 3.1,
##     "Petal.Length": 5.4,
##     "Petal.Width": 2.1,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.7,
##     "Sepal.Width": 3.1,
##     "Petal.Length": 5.6,
##     "Petal.Width": 2.4,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.9,
##     "Sepal.Width": 3.1,
##     "Petal.Length": 5.1,
##     "Petal.Width": 2.3,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 5.8,
##     "Sepal.Width": 2.7,
##     "Petal.Length": 5.1,
##     "Petal.Width": 1.9,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.8,
##     "Sepal.Width": 3.2,
##     "Petal.Length": 5.9,
##     "Petal.Width": 2.3,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.7,
##     "Sepal.Width": 3.3,
##     "Petal.Length": 5.7,
##     "Petal.Width": 2.5,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.7,
##     "Sepal.Width": 3,
##     "Petal.Length": 5.2,
##     "Petal.Width": 2.3,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.3,
##     "Sepal.Width": 2.5,
##     "Petal.Length": 5,
##     "Petal.Width": 1.9,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.5,
##     "Sepal.Width": 3,
##     "Petal.Length": 5.2,
##     "Petal.Width": 2,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 6.2,
##     "Sepal.Width": 3.4,
##     "Petal.Length": 5.4,
##     "Petal.Width": 2.3,
##     "Species": "virginica"
##   },
##   {
##     "Sepal.Length": 5.9,
##     "Sepal.Width": 3,
##     "Petal.Length": 5.1,
##     "Petal.Width": 1.8,
##     "Species": "virginica"
##   }
## ]

http://www.r-bloggers.com/new-package-jsonlite-a-smarter-json-encoderdecoder/

JSON -> Data Frame

Application programming interfaces (API)

  • 應用程式介面 Wiki
  • Web API

Facebook

Add A New App

Select A Platform

Setup Your App

Check Detail Info of You App

Facebook Graph API Explorer

Facebook Graph API Explorer

Select Your App

The First Try

!?!

You Need to Setup Access Tokens

Looking Good!

Select Some Columns/Fields

The Access Token Has Expiration Time

Get the URL Can Be Used in R

Get Code

cURL

Graph API in R

if (!require('httr')){
    install.packages("httr")
    library(httr)
}
#put your token
token<-"CAACEdEose0cBAOW9QjjEMGHGp54JEGytGz9tPRltLiHRGJsHae0dSEHxlVmogqJ4hd8EoUQvB3yvDWFDpnHX8dfA2AIgelMfXQ7jZCrQbeaTEIWfjZCWoVZCzZB3cqrq8HFwr73qD1eaiNZAZCmFq0iZCi6kWFHn6Dh8gPFkRLMqvLhl17CuvbpixEO6k0ZBr1FcXq9L9pmFvL3JeX1ZCIBg8" #put your token
FBData = GET(
    paste0("https://graph.facebook.com/v2.5/tsaiingwen?fields=
           posts{message,likes.summary(true)}&access_token=",
           token))
names(FBData)
##  [1] "url"         "status_code" "headers"     "all_headers" "cookies"    
##  [6] "content"     "date"        "times"       "request"     "handle"

Graph API in R

json1 = content(FBData)
names(json1)
## [1] "posts" "id"
names(json1$posts)
## [1] "data"   "paging"
json2 = jsonlite::fromJSON(toJSON(json1$posts$data))
names(json2)
## [1] "message" "id"      "likes"

Graph API in R

json2$message[[1]]
## [1] "再多雨,總有放晴的一天。\n\n圖片版權:\n
## kuoyoung@flickr (https://goo.gl/UPIZ5r)\n
## CC BY-NC-ND 2.0 (https://goo.gl/cefU8)"
json2$likes$summary$total_count[[1]]
## [1] 19362

Rfacebook Package

Use Rfacebook To Get Info from A Page

getPage("tsaiingwen", token,n = 30)

How To Get More Data?

Use since and until

Set the dates vector

totalPage<-NULL
lastDate<-Sys.Date()
numberOfPost<-30
DateVector<-seq(as.Date("2016-01-01"),lastDate,by="5 days")
DateVectorStr<-as.character(DateVector)
DateVectorStr
## "2016-01-01" "2016-01-06" "2016-01-11" "2016-01-16" "2016-01-21" "2016-01-26" 
## "2016-01-31" "2016-02-05" "2016-02-10" "2016-02-15" "2016-02-20" "2016-02-25" 
## "2016-03-01" "2016-03-06" "2016-03-11" "2016-03-16" "2016-03-21"

How To Get More Data?

Use since and until

token<-'Your Token'
for(i in 1:(length(DateVectorStr)-1)){
    tempPage<-getPage("tsaiingwen", token,
                      since = DateVectorStr[i],until = DateVectorStr[i+1])
    totalPage<-rbind(totalPage,tempPage)
}
nrow(totalPage)
## [1] 187

Homework 4

  • 學號尾數1,2,3,4:蔡英文 / 5,6,7:朱立倫 / 8,9,0:柯文哲
  • 分析區間:2016/01/01到做作業的那一天
  • 分析內容:
    • 每日發文數、likes數、Comments數、Shares數,並分析討論高低起伏原因(平日假日?特殊日子?特殊事件?)
    • 提示:處理時間字串、用aggregate算每日發文數(FUN=length),likes平均數(FUN=mean)
    • Comments的人在區間內的留言頻率(留言數/發文數,加分題
    • 加分題提示:getPost(post_id,token,n.comments = xxx)

Homework 4 提示程式碼

#日期處理
totalPage$datetime <- as.POSIXct(totalPage$created_time, 
                                 format = "%Y-%m-%dT%H:%M:%S+0000", 
                                 tz = "GMT") #2016-01-16T15:05:36+0000
totalPage$dateTPE <- format(totalPage$datetime, "%Y-%m-%d", 
                            tz = "Asia/Taipei") #2016-01-16
totalPage$weekdays <-weekdays(format(totalPage$datetime, "%m/%d/%Y", 
                            tz = "Asia/Taipei"))
#計算likes, comments, shares
aggregate(要算平均的欄位名稱~date,totalPage,mean)
#加分題
totalPage$id #post_id
getPost(post_id,token,n.comments = xxx)

Homework 4 詳細配分

  • 標題:Facebook粉絲團分析(分析專頁名稱OOO)(2 pt)
  • 程式説明,要讓路人看懂,請務必說明分析區間(範例:2016/01/01至xx/xx貼文分析)(5 pt)
  • 次標題:讀取OOO粉絲團資料
  • 資料讀取程式碼(7 pt)
  • 次標題:每日發文數分析(2 pt)
  • 程式碼(5 pt)、結果(5 pt)、討論(5 pt)
  • 次標題:每日likes數、Comments數、shares數分析(各一個標題2 pt*3)
  • 程式碼(7 pt)、結果(7 pt)、討論(7 pt)(likes, comments, shares分開寫)
  • 次標題:粉絲留言頻率(加分題)
  • 程式碼、結果、討論(加分題)

Homework 4 作業繳交

Other Useful Methods in Rfacebook Packages

XML 可延伸標記式語言

  • Extensible markup language
  • 描述結構化資料的語言
  • 處理XML檔案是網頁Html爬蟲的基礎
  • Components
    • Markup 標記 - labels that give the text structure
    • Content 內文 - the actual text of the document
  • XML Wiki

Tags, elements and attributes

  • Tags correspond to general labels
    • Start tags <breakfast_menu>, <price>
    • End tags </price>
    • Empty tags <line-break />
  • Elements are specific examples of tags
    • <name>Belgian Waffles</name>
  • Attributes are components of the label
    • <book category="web">

讀 XML 檔案

if (!require('XML')){
    install.packages("XML")
    library(XML)
}
fileUrl <- "http://www.w3schools.com/xml/simple.xml"
doc <- xmlTreeParse(fileUrl,useInternal=TRUE)
rootNode <- xmlRoot(doc)
xmlName(rootNode)
## [1] "breakfast_menu"
names(rootNode)
##   food   food   food   food   food 
## "food" "food" "food" "food" "food"
rootNode
## <breakfast_menu>
##   <food>
##     <name>Belgian Waffles</name>
##     <price>$5.95</price>
##     <description>Two of our famous Belgian Waffles with plenty of real maple syrup</description>
##     <calories>650</calories>
##   </food>
##   <food>
##     <name>Strawberry Belgian Waffles</name>
##     <price>$7.95</price>
##     <description>Light Belgian waffles covered with strawberries and whipped cream</description>
##     <calories>900</calories>
##   </food>
##   <food>
##     <name>Berry-Berry Belgian Waffles</name>
##     <price>$8.95</price>
##     <description>Light Belgian waffles covered with an assortment of fresh berries and whipped cream</description>
##     <calories>900</calories>
##   </food>
##   <food>
##     <name>French Toast</name>
##     <price>$4.50</price>
##     <description>Thick slices made from our homemade sourdough bread</description>
##     <calories>600</calories>
##   </food>
##   <food>
##     <name>Homestyle Breakfast</name>
##     <price>$6.95</price>
##     <description>Two eggs, bacon or sausage, toast, and our ever-popular hash browns</description>
##     <calories>950</calories>
##   </food>
## </breakfast_menu>

直接指定要哪部分的資料

rootNode[[1]]
## <food>
##   <name>Belgian Waffles</name>
##   <price>$5.95</price>
##   <description>Two of our famous Belgian Waffles with plenty of real maple syrup</description>
##   <calories>650</calories>
## </food>
rootNode[[1]][[1]]
## <name>Belgian Waffles</name>

針對某個tag取值

xpathSApply(rootNode,"//name",xmlValue)#取得所有"name"標籤內的資料
## [1] "Belgian Waffles"             "Strawberry Belgian Waffles" 
## [3] "Berry-Berry Belgian Waffles" "French Toast"               
## [5] "Homestyle Breakfast"
xpathSApply(rootNode,"//price",xmlValue)#取得所有"price"標籤內的資料
## [1] "$5.95" "$7.95" "$8.95" "$4.50" "$6.95"

XML讀取範例-臺北市水質監測資訊

XML讀取範例-臺北市水質監測資訊

waterQ <- xmlTreeParse("waterQuality.xml",useInternal=TRUE)
rootNode <- xmlRoot(waterQ)
rootNode
## <DataSet xmlns="http://twd.water.gov.tw/opendata/wqb">
##   <xs:schema xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" id="NewDataSet">
##     <xs:element name="NewDataSet" msdata:IsDataSet="true" msdata:UseCurrentLocale="true">
##       <xs:complexType>
##         <xs:choice minOccurs="0" maxOccurs="unbounded">
##           <xs:element name="qua_data">
##             <xs:complexType>
##               <xs:sequence>
##                 <xs:element name="update_date" type="xs:string" minOccurs="0"/>
##                 <xs:element name="update_time" type="xs:string" minOccurs="0"/>
##                 <xs:element name="qua_id" type="xs:string" minOccurs="0"/>
##                 <xs:element name="code_name" type="xs:string" minOccurs="0"/>
##                 <xs:element name="longitude" type="xs:string" minOccurs="0"/>
##                 <xs:element name="latitude" type="xs:string" minOccurs="0"/>
##                 <xs:element name="qua_cntu" type="xs:float" minOccurs="0"/>
##                 <xs:element name="qua_cl" type="xs:float" minOccurs="0"/>
##                 <xs:element name="qua_ph" type="xs:float" minOccurs="0"/>
##               </xs:sequence>
##             </xs:complexType>
##           </xs:element>
##         </xs:choice>
##       </xs:complexType>
##     </xs:element>
##   </xs:schema>
##   <diffgr:diffgram xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:diffgr="urn:schemas-microsoft-com:xml-diffgram-v1">
##     <NewDataSet xmlns="">
##       <qua_data diffgr:id="qua_data1" msdata:rowOrder="0">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>CS00        </qua_id>
##         <code_name>雙溪淨水場</code_name>
##         <longitude>121.56094</longitude>
##         <latitude>25.11574</latitude>
##         <qua_cntu>0.01</qua_cntu>
##         <qua_cl>0.52</qua_cl>
##         <qua_ph>7</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data2" msdata:rowOrder="1">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>CS01        </qua_id>
##         <code_name>衛理女中</code_name>
##         <longitude>121.54401</longitude>
##         <latitude>25.10325</latitude>
##         <qua_cntu>0.1</qua_cntu>
##         <qua_cl>0.45</qua_cl>
##         <qua_ph>7.1</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data3" msdata:rowOrder="2">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>CS02        </qua_id>
##         <code_name>雙溪國小                </code_name>
##         <longitude>121.55557</longitude>
##         <latitude>25.10763</latitude>
##         <qua_cntu>0.05</qua_cntu>
##         <qua_cl>0.33</qua_cl>
##         <qua_ph>7.3</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data4" msdata:rowOrder="3">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>CS03        </qua_id>
##         <code_name>華興加壓站</code_name>
##         <longitude>121.53476</longitude>
##         <latitude>25.10356</latitude>
##         <qua_cntu>0.18</qua_cntu>
##         <qua_cl>0.31</qua_cl>
##         <qua_ph>7</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data5" msdata:rowOrder="4">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>CX00        </qua_id>
##         <code_name>長興淨水場</code_name>
##         <longitude>121.54043</longitude>
##         <latitude>25.01633</latitude>
##         <qua_cntu>0.03</qua_cntu>
##         <qua_cl>0.49</qua_cl>
##         <qua_ph>6.8</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data6" msdata:rowOrder="5">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>CX02        </qua_id>
##         <code_name>市政大樓</code_name>
##         <longitude>121.55661</longitude>
##         <latitude>25.04250</latitude>
##         <qua_cntu>0.04</qua_cntu>
##         <qua_cl>0.42</qua_cl>
##         <qua_ph>7.4</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data7" msdata:rowOrder="6">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>CX03        </qua_id>
##         <code_name>市議會</code_name>
##         <longitude>121.55360</longitude>
##         <latitude>25.04001</latitude>
##         <qua_cntu>0.05</qua_cntu>
##         <qua_cl>0.35</qua_cl>
##         <qua_ph>7.1</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data8" msdata:rowOrder="7">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>CX04        </qua_id>
##         <code_name>捷運忠孝復興站</code_name>
##         <longitude>121.53551</longitude>
##         <latitude>25.04251</latitude>
##         <qua_cntu>0.03</qua_cntu>
##         <qua_cl>0.42</qua_cl>
##         <qua_ph>7.4</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data9" msdata:rowOrder="8">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>CX05        </qua_id>
##         <code_name>南港高工</code_name>
##         <longitude>121.59892</longitude>
##         <latitude>25.05787</latitude>
##         <qua_cntu>0.08</qua_cntu>
##         <qua_cl>0.43</qua_cl>
##         <qua_ph>7</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data10" msdata:rowOrder="9">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>CX06        </qua_id>
##         <code_name>南港加壓站</code_name>
##         <longitude>121.60829</longitude>
##         <latitude>25.04994</latitude>
##         <qua_cntu>0.02</qua_cntu>
##         <qua_cl>0.46</qua_cl>
##         <qua_ph>6.9</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data11" msdata:rowOrder="10">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>CX07        </qua_id>
##         <code_name>挹翠加壓站</code_name>
##         <longitude>121.56617</longitude>
##         <latitude>25.02339</latitude>
##         <qua_cntu>0.11</qua_cntu>
##         <qua_cl>0.36</qua_cl>
##         <qua_ph>7.4</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data12" msdata:rowOrder="11">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>CX08        </qua_id>
##         <code_name>敦化國中                </code_name>
##         <longitude>121.53852</longitude>
##         <latitude>25.05305</latitude>
##         <qua_cntu>0.03</qua_cntu>
##         <qua_cl>0.51</qua_cl>
##         <qua_ph>7.3</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data13" msdata:rowOrder="12">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>GG00        </qua_id>
##         <code_name>公館淨水場</code_name>
##         <longitude>121.52221</longitude>
##         <latitude>25.01421</latitude>
##         <qua_cntu>0.06</qua_cntu>
##         <qua_cl>0.5</qua_cl>
##         <qua_ph>7.1</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data14" msdata:rowOrder="13">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>GG01        </qua_id>
##         <code_name>捷運台北車站</code_name>
##         <longitude>121.50946</longitude>
##         <latitude>25.04860</latitude>
##         <qua_cntu>0.05</qua_cntu>
##         <qua_cl>0.47</qua_cl>
##         <qua_ph>7.1</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data15" msdata:rowOrder="14">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>GG02        </qua_id>
##         <code_name>捷運中正紀念堂站</code_name>
##         <longitude>121.51198</longitude>
##         <latitude>25.03667</latitude>
##         <qua_cntu>0.04</qua_cntu>
##         <qua_cl>0.43</qua_cl>
##         <qua_ph>7.2</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data16" msdata:rowOrder="15">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>GG03        </qua_id>
##         <code_name>萬華國中</code_name>
##         <longitude>121.49045</longitude>
##         <latitude>25.03069</latitude>
##         <qua_cntu>0.02</qua_cntu>
##         <qua_cl>0.49</qua_cl>
##         <qua_ph>7.1</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data17" msdata:rowOrder="16">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>GG04        </qua_id>
##         <code_name>華江社區配水池</code_name>
##         <longitude>121.48482</longitude>
##         <latitude>25.03651</latitude>
##         <qua_cntu>0.09</qua_cntu>
##         <qua_cl>0.43</qua_cl>
##         <qua_ph>7</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data18" msdata:rowOrder="17">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>GG05        </qua_id>
##         <code_name>西門國小</code_name>
##         <longitude>121.49537</longitude>
##         <latitude>25.04475</latitude>
##         <qua_cntu>-9</qua_cntu>
##         <qua_cl>-9</qua_cl>
##         <qua_ph>-9</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data19" msdata:rowOrder="18">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>GG06        </qua_id>
##         <code_name>忠孝國小</code_name>
##         <longitude>121.52330</longitude>
##         <latitude>25.04445</latitude>
##         <qua_cntu>0.04</qua_cntu>
##         <qua_cl>0.45</qua_cl>
##         <qua_ph>7.2</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data20" msdata:rowOrder="19">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>GG07        </qua_id>
##         <code_name>螢橋國小</code_name>
##         <longitude>121.50684</longitude>
##         <latitude>25.02738</latitude>
##         <qua_cntu>0.06</qua_cntu>
##         <qua_cl>0.41</qua_cl>
##         <qua_ph>7.2</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data21" msdata:rowOrder="20">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT00        </qua_id>
##         <code_name>直潭淨水場               </code_name>
##         <longitude>121.52536</longitude>
##         <latitude>24.94578</latitude>
##         <qua_cntu>0.04</qua_cntu>
##         <qua_cl>0.49</qua_cl>
##         <qua_ph>6.7</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data22" msdata:rowOrder="21">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT02        </qua_id>
##         <code_name>伸仗板配水池</code_name>
##         <longitude>121.53502</longitude>
##         <latitude>24.93163</latitude>
##         <qua_cntu>0.09</qua_cntu>
##         <qua_cl>0.55</qua_cl>
##         <qua_ph>7</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data23" msdata:rowOrder="22">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT10        </qua_id>
##         <code_name>中和加壓站</code_name>
##         <longitude>121.51252</longitude>
##         <latitude>24.99116</latitude>
##         <qua_cntu>0.04</qua_cntu>
##         <qua_cl>0.5</qua_cl>
##         <qua_ph>6.9</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data24" msdata:rowOrder="23">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT11        </qua_id>
##         <code_name>安康加壓站</code_name>
##         <longitude>121.50043</longitude>
##         <latitude>24.96287</latitude>
##         <qua_cntu>0.04</qua_cntu>
##         <qua_cl>0.55</qua_cl>
##         <qua_ph>6.9</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data25" msdata:rowOrder="24">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT12        </qua_id>
##         <code_name>頂溪站</code_name>
##         <longitude>121.50717</longitude>
##         <latitude>25.01439</latitude>
##         <qua_cntu>0.06</qua_cntu>
##         <qua_cl>0.44</qua_cl>
##         <qua_ph>7</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data26" msdata:rowOrder="25">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT13        </qua_id>
##         <code_name>中和國小</code_name>
##         <longitude>121.49252</longitude>
##         <latitude>25.00055</latitude>
##         <qua_cntu>0.03</qua_cntu>
##         <qua_cl>0.44</qua_cl>
##         <qua_ph>7</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data27" msdata:rowOrder="26">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT14        </qua_id>
##         <code_name>積穗國小</code_name>
##         <longitude>121.47342</longitude>
##         <latitude>25.00029</latitude>
##         <qua_cntu>0.06</qua_cntu>
##         <qua_cl>0.35</qua_cl>
##         <qua_ph>7.2</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data28" msdata:rowOrder="27">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT15        </qua_id>
##         <code_name>捷運大坪林站</code_name>
##         <longitude>121.53337</longitude>
##         <latitude>24.98410</latitude>
##         <qua_cntu>0.03</qua_cntu>
##         <qua_cl>0.42</qua_cl>
##         <qua_ph>6.8</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data29" msdata:rowOrder="28">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT16        </qua_id>
##         <code_name>十二張加壓站</code_name>
##         <longitude>121.54142</longitude>
##         <latitude>24.96792</latitude>
##         <qua_cntu>0.03</qua_cntu>
##         <qua_cl>0.48</qua_cl>
##         <qua_ph>7</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data30" msdata:rowOrder="29">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT17        </qua_id>
##         <code_name>景美女中</code_name>
##         <longitude>121.54800</longitude>
##         <latitude>24.98227</latitude>
##         <qua_cntu>0.04</qua_cntu>
##         <qua_cl>0.44</qua_cl>
##         <qua_ph>7</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data31" msdata:rowOrder="30">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT18        </qua_id>
##         <code_name>木柵動物園</code_name>
##         <longitude>121.57299</longitude>
##         <latitude>25.00022</latitude>
##         <qua_cntu>0.13</qua_cntu>
##         <qua_cl>0.48</qua_cl>
##         <qua_ph>7.1</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data32" msdata:rowOrder="31">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT20        </qua_id>
##         <code_name>公館加壓站</code_name>
##         <longitude>121.52207</longitude>
##         <latitude>25.01300</latitude>
##         <qua_cntu>0.05</qua_cntu>
##         <qua_cl>0.45</qua_cl>
##         <qua_ph>6.7</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data33" msdata:rowOrder="32">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT21        </qua_id>
##         <code_name>萬芳二號配水池</code_name>
##         <longitude>121.55794</longitude>
##         <latitude>25.00461</latitude>
##         <qua_cntu>0.04</qua_cntu>
##         <qua_cl>0.42</qua_cl>
##         <qua_ph>6.8</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data34" msdata:rowOrder="33">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT22        </qua_id>
##         <code_name>指南二加壓站</code_name>
##         <longitude>121.57322</longitude>
##         <latitude>24.97858</latitude>
##         <qua_cntu>0.06</qua_cntu>
##         <qua_cl>0.41</qua_cl>
##         <qua_ph>6.9</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data35" msdata:rowOrder="34">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT23        </qua_id>
##         <code_name>木柵二期配水池</code_name>
##         <longitude>121.57822</longitude>
##         <latitude>24.98869</latitude>
##         <qua_cntu>0.07</qua_cntu>
##         <qua_cl>0.47</qua_cl>
##         <qua_ph>7</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data36" msdata:rowOrder="35">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT24        </qua_id>
##         <code_name>三重加壓站</code_name>
##         <longitude>121.48565</longitude>
##         <latitude>25.06458</latitude>
##         <qua_cntu>0.05</qua_cntu>
##         <qua_cl>0.44</qua_cl>
##         <qua_ph>6.8</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data37" msdata:rowOrder="36">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT25        </qua_id>
##         <code_name>新北高中</code_name>
##         <longitude>121.48253</longitude>
##         <latitude>25.05676</latitude>
##         <qua_cntu>0.05</qua_cntu>
##         <qua_cl>0.43</qua_cl>
##         <qua_ph>6.8</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data38" msdata:rowOrder="37">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT26        </qua_id>
##         <code_name>指南六加壓站</code_name>
##         <longitude>121.57899</longitude>
##         <latitude>24.96866</latitude>
##         <qua_cntu>0.1</qua_cntu>
##         <qua_cl>0.39</qua_cl>
##         <qua_ph>7.7</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data39" msdata:rowOrder="38">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT30        </qua_id>
##         <code_name>大同加壓站</code_name>
##         <longitude>121.52114</longitude>
##         <latitude>25.07032</latitude>
##         <qua_cntu>0.05</qua_cntu>
##         <qua_cl>0.51</qua_cl>
##         <qua_ph>6.9</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data40" msdata:rowOrder="39">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT31        </qua_id>
##         <code_name>麗山國中</code_name>
##         <longitude>121.56421</longitude>
##         <latitude>25.08504</latitude>
##         <qua_cntu>0.04</qua_cntu>
##         <qua_cl>0.5</qua_cl>
##         <qua_ph>7.1</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data41" msdata:rowOrder="40">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT32        </qua_id>
##         <code_name>重慶國中</code_name>
##         <longitude>121.50988</longitude>
##         <latitude>25.07802</latitude>
##         <qua_cntu>0.05</qua_cntu>
##         <qua_cl>0.48</qua_cl>
##         <qua_ph>7.1</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data42" msdata:rowOrder="41">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT33        </qua_id>
##         <code_name>台北海洋技術學院</code_name>
##         <longitude>121.46268</longitude>
##         <latitude>25.10985</latitude>
##         <qua_cntu>0.06</qua_cntu>
##         <qua_cl>0.44</qua_cl>
##         <qua_ph>7.7</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data43" msdata:rowOrder="42">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT34        </qua_id>
##         <code_name>介壽國中</code_name>
##         <longitude>121.54829</longitude>
##         <latitude>25.05794</latitude>
##         <qua_cntu>0.06</qua_cntu>
##         <qua_cl>0.42</qua_cl>
##         <qua_ph>6.9</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data44" msdata:rowOrder="43">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT35        </qua_id>
##         <code_name>士林國中</code_name>
##         <longitude>121.50809</longitude>
##         <latitude>25.09652</latitude>
##         <qua_cntu>0.02</qua_cntu>
##         <qua_cl>0.43</qua_cl>
##         <qua_ph>6.9</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data45" msdata:rowOrder="44">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT36        </qua_id>
##         <code_name>陽明高中</code_name>
##         <longitude>121.50891</longitude>
##         <latitude>25.09335</latitude>
##         <qua_cntu>0.05</qua_cntu>
##         <qua_cl>0.41</qua_cl>
##         <qua_ph>7</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data46" msdata:rowOrder="45">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT37        </qua_id>
##         <code_name>捷運石牌站</code_name>
##         <longitude>121.50743</longitude>
##         <latitude>25.11584</latitude>
##         <qua_cntu>0.04</qua_cntu>
##         <qua_cl>0.48</qua_cl>
##         <qua_ph>6.9</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data47" msdata:rowOrder="46">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT38        </qua_id>
##         <code_name>天母加壓站</code_name>
##         <longitude>121.52530</longitude>
##         <latitude>25.12182</latitude>
##         <qua_cntu>0.04</qua_cntu>
##         <qua_cl>0.48</qua_cl>
##         <qua_ph>6.9</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data48" msdata:rowOrder="47">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT39        </qua_id>
##         <code_name>關渡國小</code_name>
##         <longitude>121.45823</longitude>
##         <latitude>25.12799</latitude>
##         <qua_cntu>0.02</qua_cntu>
##         <qua_cl>0.5</qua_cl>
##         <qua_ph>7.1</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data49" msdata:rowOrder="48">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT40        </qua_id>
##         <code_name>捷運淡水站</code_name>
##         <longitude>121.43730</longitude>
##         <latitude>25.16947</latitude>
##         <qua_cntu>0.04</qua_cntu>
##         <qua_cl>0.45</qua_cl>
##         <qua_ph>6.9</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data50" msdata:rowOrder="49">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT41        </qua_id>
##         <code_name>北投第4配水池</code_name>
##         <longitude>121.49650</longitude>
##         <latitude>25.14770</latitude>
##         <qua_cntu>-9</qua_cntu>
##         <qua_cl>-9</qua_cl>
##         <qua_ph>-9</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data51" msdata:rowOrder="50">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT42        </qua_id>
##         <code_name>北投加壓站</code_name>
##         <longitude>121.49316</longitude>
##         <latitude>25.12045</latitude>
##         <qua_cntu>0.04</qua_cntu>
##         <qua_cl>0.44</qua_cl>
##         <qua_ph>6.8</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data52" msdata:rowOrder="51">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT50        </qua_id>
##         <code_name>松山加壓站</code_name>
##         <longitude>121.55965</longitude>
##         <latitude>25.06639</latitude>
##         <qua_cntu>0.17</qua_cntu>
##         <qua_cl>0.5</qua_cl>
##         <qua_ph>6.9</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data53" msdata:rowOrder="52">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT51        </qua_id>
##         <code_name>內溝里加壓站</code_name>
##         <longitude>121.61561</longitude>
##         <latitude>25.08017</latitude>
##         <qua_cntu>0.05</qua_cntu>
##         <qua_cl>0.35</qua_cl>
##         <qua_ph>6.8</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data54" msdata:rowOrder="53">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT52        </qua_id>
##         <code_name>潭美國小</code_name>
##         <longitude>121.58255</longitude>
##         <latitude>25.06248</latitude>
##         <qua_cntu>0.07</qua_cntu>
##         <qua_cl>0.49</qua_cl>
##         <qua_ph>7.1</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data55" msdata:rowOrder="54">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT53        </qua_id>
##         <code_name>東湖國中</code_name>
##         <longitude>121.58088</longitude>
##         <latitude>25.07750</latitude>
##         <qua_cntu>0.09</qua_cntu>
##         <qua_cl>0.4</qua_cl>
##         <qua_ph>7</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data56" msdata:rowOrder="55">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT54        </qua_id>
##         <code_name>民生加壓站</code_name>
##         <longitude>121.54186</longitude>
##         <latitude>25.14058</latitude>
##         <qua_cntu>0.03</qua_cntu>
##         <qua_cl>0.51</qua_cl>
##         <qua_ph>7</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data57" msdata:rowOrder="56">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>JT55        </qua_id>
##         <code_name>興隆公營住宅1區</code_name>
##         <longitude>121.55806</longitude>
##         <latitude>24.98833</latitude>
##         <qua_cntu>0.01</qua_cntu>
##         <qua_cl>0.38</qua_cl>
##         <qua_ph>6.9</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data58" msdata:rowOrder="57">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>YM00        </qua_id>
##         <code_name>陽明淨水場</code_name>
##         <longitude>121.52388</longitude>
##         <latitude>25.15261</latitude>
##         <qua_cntu>0.01</qua_cntu>
##         <qua_cl>0.5</qua_cl>
##         <qua_ph>7.3</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data59" msdata:rowOrder="58">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>YM01        </qua_id>
##         <code_name>隧道                  </code_name>
##         <longitude>121.50303</longitude>
##         <latitude>25.14582</latitude>
##         <qua_cntu>-9</qua_cntu>
##         <qua_cl>-9</qua_cl>
##         <qua_ph>-9</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data60" msdata:rowOrder="59">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>YM02        </qua_id>
##         <code_name>中正路配水池                 </code_name>
##         <longitude>121.53615</longitude>
##         <latitude>25.15329</latitude>
##         <qua_cntu>0.03</qua_cntu>
##         <qua_cl>0.49</qua_cl>
##         <qua_ph>7</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data61" msdata:rowOrder="60">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>YM03        </qua_id>
##         <code_name>中山樓                 </code_name>
##         <longitude>121.54510</longitude>
##         <latitude>25.15725</latitude>
##         <qua_cntu>0.13</qua_cntu>
##         <qua_cl>0.48</qua_cl>
##         <qua_ph>7.5</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data62" msdata:rowOrder="61">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>YM04        </qua_id>
##         <code_name>鹿角坑(三加)</code_name>
##         <longitude>121.54746</longitude>
##         <latitude>25.18501</latitude>
##         <qua_cntu>0.58</qua_cntu>
##         <qua_cl>0.59</qua_cl>
##         <qua_ph>7.8</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data63" msdata:rowOrder="62">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>YM05        </qua_id>
##         <code_name>泉源國小</code_name>
##         <longitude>121.51595</longitude>
##         <latitude>25.15081</latitude>
##         <qua_cntu>1.07</qua_cntu>
##         <qua_cl>0.28</qua_cl>
##         <qua_ph>8.1</qua_ph>
##       </qua_data>
##       <qua_data diffgr:id="qua_data64" msdata:rowOrder="63">
##         <update_date>2016-03-25</update_date>
##         <update_time>09:30:00  </update_time>
##         <qua_id>YM06        </qua_id>
##         <code_name>三角埔加壓站</code_name>
##         <longitude>121.52562</longitude>
##         <latitude>25.12964</latitude>
##         <qua_cntu>0.05</qua_cntu>
##         <qua_cl>0.42</qua_cl>
##         <qua_ph>6.9</qua_ph>
##       </qua_data>
##     </NewDataSet>
##   </diffgr:diffgram>
## </DataSet>

XML讀取範例-臺北市水質監測資訊

#取得所有"code_name"標籤內的資料
xpathSApply(rootNode,"//code_name",xmlValue)
##  [1] "雙溪淨水場"                    "衛理女中"                     
##  [3] "雙溪國小                "      "華興加壓站"                   
##  [5] "長興淨水場"                    "市政大樓"                     
##  [7] "市議會"                        "捷運忠孝復興站"               
##  [9] "南港高工"                      "南港加壓站"                   
## [11] "挹翠加壓站"                    "敦化國中                "     
## [13] "公館淨水場"                    "捷運台北車站"                 
## [15] "捷運中正紀念堂站"              "萬華國中"                     
## [17] "華江社區配水池"                "西門國小"                     
## [19] "忠孝國小"                      "螢橋國小"                     
## [21] "直潭淨水場               "     "伸仗板配水池"                 
## [23] "中和加壓站"                    "安康加壓站"                   
## [25] "頂溪站"                        "中和國小"                     
## [27] "積穗國小"                      "捷運大坪林站"                 
## [29] "十二張加壓站"                  "景美女中"                     
## [31] "木柵動物園"                    "公館加壓站"                   
## [33] "萬芳二號配水池"                "指南二加壓站"                 
## [35] "木柵二期配水池"                "三重加壓站"                   
## [37] "新北高中"                      "指南六加壓站"                 
## [39] "大同加壓站"                    "麗山國中"                     
## [41] "重慶國中"                      "台北海洋技術學院"             
## [43] "介壽國中"                      "士林國中"                     
## [45] "陽明高中"                      "捷運石牌站"                   
## [47] "天母加壓站"                    "關渡國小"                     
## [49] "捷運淡水站"                    "北投第4配水池"                
## [51] "北投加壓站"                    "松山加壓站"                   
## [53] "內溝里加壓站"                  "潭美國小"                     
## [55] "東湖國中"                      "民生加壓站"                   
## [57] "興隆公營住宅1區"               "陽明淨水場"                   
## [59] "隧道                  "        "中正路配水池                 "
## [61] "中山樓                 "       "鹿角坑(三加)"                 
## [63] "泉源國小"                      "三角埔加壓站"

XML讀取範例-臺北市水質監測資訊

#取得各監測站的經度
xpathSApply(rootNode,"//longitude",xmlValue)
##  [1] "121.56094" "121.54401" "121.55557" "121.53476" "121.54043"
##  [6] "121.55661" "121.55360" "121.53551" "121.59892" "121.60829"
## [11] "121.56617" "121.53852" "121.52221" "121.50946" "121.51198"
## [16] "121.49045" "121.48482" "121.49537" "121.52330" "121.50684"
## [21] "121.52536" "121.53502" "121.51252" "121.50043" "121.50717"
## [26] "121.49252" "121.47342" "121.53337" "121.54142" "121.54800"
## [31] "121.57299" "121.52207" "121.55794" "121.57322" "121.57822"
## [36] "121.48565" "121.48253" "121.57899" "121.52114" "121.56421"
## [41] "121.50988" "121.46268" "121.54829" "121.50809" "121.50891"
## [46] "121.50743" "121.52530" "121.45823" "121.43730" "121.49650"
## [51] "121.49316" "121.55965" "121.61561" "121.58255" "121.58088"
## [56] "121.54186" "121.55806" "121.52388" "121.50303" "121.53615"
## [61] "121.54510" "121.54746" "121.51595" "121.52562"

XML讀取範例-臺北市水質監測資訊

網頁爬蟲 Webscraping, Crawling

Webscraping: Programatically extracting data from the HTML code of websites.

  • 不是每個網站都提供API
    • 但網頁上卻有你想要分析的資料(像是ptt推文!?)
    • 除了人工複製貼上以外,也可以將網頁處理程式化
  • 可能違法…..,一次讀太多太快,很可能被鎖IP
  • Webscraping Wiki
  • 什麼是網頁爬蟲

What’s the difference between scraping and crawling

  • Crawling
    • dealing with large data-sets where you develop your own crawlers which crawl to the deepest of the web pages.
  • Data scraping
    • retrieving information from any source (not necessarily the web).
    • It’s more often the case that irrespective of the approaches involved.

爬蟲範例

直接逐行讀取 readLines()

con = url("http://im.cgu.edu.tw/bin/home.php")
htmlCode = readLines(con)
## Warning in readLines(con): incomplete final line found on 'http://
## im.cgu.edu.tw/bin/home.php'
close(con)
htmlCode
##    [1] "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">"                                                                                                                                                                                                                                                                                                                               
##    [2] "<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"zh-tw\">"                                                                                                                                                                                                                                                                                                                                                                                                
##    [3] "<head>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##    [4] "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />"                                                                                                                                                                                                                                                                                                                                                                                   
##    [5] "<meta http-equiv=\"X-UA-Compatible\" content=\"IE=EmulateIE7\" /><meta name=\"keywords\" content=\"請填寫網站關鍵記事,用半角逗號(,)隔開\" />"                                                                                                                                                                                                                                                                                                               
##    [6] "<meta name=\"description\" content=\"請填寫網站簡述\" />"                                                                                                                                                                                                                                                                                                                                                                                                    
##    [7] "<meta content=\"index,follow\" name=\"robots\">"                                                                                                                                                                                                                                                                                                                                                                                                             
##    [8] "<title>長庚大學 資訊管理學系 </title>"                                                                                                                                                                                                                                                                                                                                                                                                                       
##    [9] "<link rel=\"stylesheet\" href=\"/ezfiles/55/1055/static/combine-zh-tw.css\" type=\"text/css\" />"                                                                                                                                                                                                                                                                                                                                                            
##   [10] "<!--[if lte IE 6]> "                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [11] "<link rel=\"stylesheet\" href=\"/style/style-ie6.css\" type=\"text/css\" /> "                                                                                                                                                                                                                                                                                                                                                                                
##   [12] "<![endif]-->"                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [13] "<Link rel=\"SHORTCUT ICON\"  href=\"/ezfiles/55/1055/sys_1055_1763933_66682.ico\" type=\"image/x-icon\" />"                                                                                                                                                                                                                                                                                                                                                  
##   [14] "<link rel=\"Bookmark\" href=\"/ezfiles/55/1055/sys_1055_1763933_66682.ico\">"                                                                                                                                                                                                                                                                                                                                                                                
##   [15] "<script type=\"text/javascript\" src='/lib/js/jquery.js'></script>"                                                                                                                                                                                                                                                                                                                                                                                          
##   [16] "<script type=\"text/javascript\" src='/lib/js/jquery-migrate.js'></script>"                                                                                                                                                                                                                                                                                                                                                                                  
##   [17] "<noscript>Your browser does not support JavaScript!</noscript>"                                                                                                                                                                                                                                                                                                                                                                                              
##   [18] "<script language=\"javascript\"><!--"                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [19] " var isHome = true "                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [20] " --></script>"                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [21] "<noscript>Your browser does not support JavaScript!</noscript>"                                                                                                                                                                                                                                                                                                                                                                                              
##   [22] "<script type=\"text/javascript\" src=\"/js/20160215.php\"></script><noscript>Your browser does not support JavaScript!</noscript>"                                                                                                                                                                                                                                                                                                                           
##   [23] "<script type=\"text/javascript\" src='/lib/js/calendar/scw.zh-tw.js'></script><noscript>Your browser does not support JavaScript!</noscript>"                                                                                                                                                                                                                                                                                                                
##   [24] "<script type=\"text/javascript\" src='/lib/js/calendar/scw.js'></script><noscript>Your browser does not support JavaScript!</noscript>"                                                                                                                                                                                                                                                                                                                      
##   [25] "<script type='text/javascript'>"                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [26] "var divOs = new divOsClass('divOs');"                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [27] "divOs.setInfo('imagedir','/images');"                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [28] "divOs.setInfo('styledir','/style');"                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [29] "divOs.setInfo('waitWord','');"                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [30] "var _SiteCounter=619484"                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [31] "divOs.Cookie.setCookie('_counter',_SiteCounter,0,'')"                                                                                                                                                                                                                                                                                                                                                                                                        
##   [32] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [33] "$(document).ready(function(){"                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [34] "   divOs.runOnload();"                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [35] "});"                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [36] "var ssoLoginUrl = \"\";"                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [37] "</script><noscript>Your browser does not support JavaScript!</noscript>"                                                                                                                                                                                                                                                                                                                                                                                     
##   [38] "</head>"                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [39] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [40] "<body class=\"page_home\">"                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [41] "<!-- Outer Container Begin  -->"                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [42] "<!-- Outer's Width, LAYOUT=Center/Left/Right -->"                                                                                                                                                                                                                                                                                                                                                                                                            
##   [43] "<div class=\"outer-outer\">"                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [44] "<div class=\"outer layout_type\"><div class=\"container\"><div class=\"container-inner\">"                                                                                                                                                                                                                                                                                                                                                                   
##   [45] "\t<!-- Head Begin -->"                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [46] "\t<div class=\"mainhead\"><div class=\"mainhead-inner\">"                                                                                                                                                                                                                                                                                                                                                                                                    
##   [47] "\t\t<div id=\"Dyn_head\">"                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [48] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [49] "<div class=\"selfhead\">"                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [50] "   "                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [51] "      "                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [52] "      <div class=\"user-head\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [53] "\t<h1 class=\"logo\"><a href=\"/bin/home.php?Lang=zh-tw\"  title=\"Department of Information Management\">Department of Information Management</a></h1>"                                                                                                                                                                                                                                                                                                     
##   [54] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [55] "\t<div class=\"top-menu\">"                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [56] "\t\t<div class=\"top-menuinner\">"                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [57] "\t\t<ul><li><a href=\"/bin/home.php?Lang=zh-tw\" title=\"繁體版\">繁體版</a></li><li><a href=\"/bin/home.php?Lang=en\" title=\"ENGLISH\">ENGLISH</a></li><li><a href=\"/files/17-1055.php?Lang=zh-tw\" title=\"Site Map\">Site Map</a></li><li><a href=\"http://www.cgu.edu.tw/bin/home.php?Lang=zh-tw\" title=\"CGU Portal Site\">長庚大學首頁</a></li></ul>"                                                                                               
##   [58] "\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [59] "\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [60] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [61] "\t<div class=\"user-search\">"                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [62] "\t\t<form action=\"/bin/ptsearch.php\" method=\"post\" name=\"SearchMoForm\">"                                                                                                                                                                                                                                                                                                                                                                               
##   [63] "\t\t<div class=\"search-keyword\"><input type=\"text\" onkeypress=\"\" onclick=\"this.select()\" value=\"Keyword\" class=\"keyword\" name=\"SchKey\" id=\"sch_key\"/></div>"                                                                                                                                                                                                                                                                                 
##   [64] "\t\t<div class=\"search-button\"><input type=\"submit\" value=\"search\" name=\"search\" class=\"searchbt\"/></div>"                                                                                                                                                                                                                                                                                                                                         
##   [65] "\t\t</form>"                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [66] "\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [67] "\t<div class=\"clearall\"></div>"                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [68] "<div id=\"user-banner\">"                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [69] "<div id=\"banner1\"></div>"                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [70] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [71] "<div class=\"clearall\"></div>"                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [72] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [73] "   "                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [74] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [75] "   <div class=\"headmenu1\"><div class=\"headnav\"><div class=\"headnav-inner\"><div class=\"hdmenu\">"                                                                                                                                                                                                                                                                                                                                                      
##   [76] "<ul>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [77] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [78] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [79] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [80] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [81] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [82] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [83] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [84] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [85] "\t\t<li id=\"Hln_172\" ><a href=\"/bin/home.php\"  title=\"最新消息\"  ><div class=\"menu-item\">最新消息</div></a></li>"                                                                                                                                                                                                                                                                                                                                    
##   [86] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [87] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [88] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [89] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [90] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [91] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [92] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [93] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [94] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [95] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [96] "\t\t<li id=\"Hln_173\" ><a class=\"drop\"   href=\"/files/11-1055-116.php\"  title=\"系所簡介\"><div class=\"menu-item\"><span class=\"cgarrow\"><span></span></span>系所簡介</div><!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table summary=\"\"><tr><td><![endif]--><ul><div>"                                                                                                                                                               
##   [97] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [98] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [99] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [100] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [101] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [102] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [103] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [104] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [105] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [106] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [107] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [108] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [109] "\t\t<li id=\"Hln_1526\" ><a href=\"/files/11-1055-2580.php\"  title=\"系所沿革\"  ><div class=\"menu-item\">系所沿革</div></a></li>"                                                                                                                                                                                                                                                                                                                         
##  [110] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [111] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [112] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [113] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [114] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [115] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [116] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [117] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [118] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [119] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [120] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [121] "\t\t<li id=\"Hln_1744\" ><a href=\"/files/11-1055-3999.php\"  title=\"歷任主任\"  ><div class=\"menu-item\">歷任主任</div></a></li>"                                                                                                                                                                                                                                                                                                                         
##  [122] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [123] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [124] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [125] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [126] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [127] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [128] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [129] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [130] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [131] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [132] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [133] "\t\t<li id=\"Hln_1745\" ><a href=\"/files/11-1055-4000.php\"  title=\"重要紀事\"  ><div class=\"menu-item\">重要紀事</div></a></li>"                                                                                                                                                                                                                                                                                                                         
##  [134] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [135] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [136] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [137] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [138] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [139] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [140] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [141] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [142] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [143] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [144] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [145] "\t\t<li id=\"Hln_1527\" ><a href=\"/files/11-1055-2581.php\"  title=\"系所特色與目標\"  ><div class=\"menu-item\">系所特色與目標</div></a></li>"                                                                                                                                                                                                                                                                                                             
##  [146] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [147] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [148] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [149] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [150] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [151] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [152] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [153] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [154] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [155] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [156] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [157] "\t\t<li id=\"Hln_2905\" ><a href=\"http://im.cgu.edu.tw/files/13-1055-36884.php\"  title=\"師生人數\"  ><div class=\"menu-item\">師生人數</div></a></li>"                                                                                                                                                                                                                                                                                                    
##  [158] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [159] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [160] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [161] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [162] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [163] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [164] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [165] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [166] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [167] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [168] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [169] "\t\t<li id=\"Hln_1529\" ><a href=\"/files/11-1055-2584.php\"  title=\"未來出路\"  ><div class=\"menu-item\">未來出路</div></a></li>"                                                                                                                                                                                                                                                                                                                         
##  [170] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [171] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [172] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [173] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [174] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [175] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [176] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [177] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [178] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [179] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [180] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [181] "\t\t<li id=\"Hln_1500\" ><a href=\"/files/11-1055-2614.php\"  title=\"系所評鑑\"  ><div class=\"menu-item\">系所評鑑</div></a></li>"                                                                                                                                                                                                                                                                                                                         
##  [182] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [183] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [184] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [185] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [186] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [187] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [188] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [189] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [190] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [191] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [192] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [193] "\t\t<li id=\"Hln_3005\" ><a href=\"http://im.cgu.edu.tw/files/11-1055-6889-1.php?Lang=zh-tw\"  title=\"招生特色\"  ><div class=\"menu-item\">招生特色</div></a></li>"                                                                                                                                                                                                                                                                                        
##  [194] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [195] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [196] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [197] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [198] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [199] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [200] "\t</div></ul><!--[if lte IE 6]></td></tr></table></a><![endif]--></li>"                                                                                                                                                                                                                                                                                                                                                                                      
##  [201] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [202] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [203] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [204] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [205] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [206] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [207] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [208] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [209] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [210] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [211] "\t\t<li id=\"Hln_2970\" ><a class=\"drop\"   href=\"javascript:void(0)\"  title=\"系所成員\"><div class=\"menu-item\"><span class=\"cgarrow\"><span></span></span>系所成員</div><!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table summary=\"\"><tr><td><![endif]--><ul><div>"                                                                                                                                                                  
##  [212] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [213] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [214] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [215] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [216] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [217] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [218] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [219] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [220] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [221] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [222] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [223] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [224] "\t\t<li id=\"Hln_2973\" ><a href=\"http://im.cgu.edu.tw/files/13-1055-38482.php?Lang=zh-tw\"  title=\"教授\"  ><div class=\"menu-item\">教授</div></a></li>"                                                                                                                                                                                                                                                                                                 
##  [225] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [226] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [227] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [228] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [229] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [230] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [231] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [232] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [233] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [234] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [235] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [236] "\t\t<li id=\"Hln_2974\" ><a href=\"http://im.cgu.edu.tw/files/13-1055-38521.php?Lang=zh-tw\"  title=\"副教授\"  ><div class=\"menu-item\">副教授</div></a></li>"                                                                                                                                                                                                                                                                                             
##  [237] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [238] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [239] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [240] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [241] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [242] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [243] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [244] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [245] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [246] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [247] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [248] "\t\t<li id=\"Hln_2975\" ><a href=\"http://im.cgu.edu.tw/files/13-1055-38487.php?Lang=zh-tw\"  title=\"助理教授\"  ><div class=\"menu-item\">助理教授</div></a></li>"                                                                                                                                                                                                                                                                                         
##  [249] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [250] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [251] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [252] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [253] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [254] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [255] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [256] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [257] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [258] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [259] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [260] "\t\t<li id=\"Hln_2976\" ><a href=\"http://im.cgu.edu.tw/files/13-1055-38490.php?Lang=zh-tw\"  title=\"客座教師\"  ><div class=\"menu-item\">客座教師</div></a></li>"                                                                                                                                                                                                                                                                                         
##  [261] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [262] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [263] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [264] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [265] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [266] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [267] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [268] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [269] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [270] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [271] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [272] "\t\t<li id=\"Hln_2977\" ><a href=\"http://im.cgu.edu.tw/files/13-1055-38491.php?Lang=zh-tw\"  title=\"兼任教師\"  ><div class=\"menu-item\">兼任教師</div></a></li>"                                                                                                                                                                                                                                                                                         
##  [273] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [274] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [275] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [276] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [277] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [278] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [279] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [280] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [281] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [282] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [283] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [284] "\t\t<li id=\"Hln_2978\" ><a href=\"http://im.cgu.edu.tw/files/13-1055-38492.php?Lang=zh-tw\"  title=\"業界師資\"  ><div class=\"menu-item\">業界師資</div></a></li>"                                                                                                                                                                                                                                                                                         
##  [285] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [286] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [287] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [288] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [289] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [290] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [291] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [292] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [293] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [294] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [295] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [296] "\t\t<li id=\"Hln_2979\" ><a href=\"http://im.cgu.edu.tw/files/13-1055-38493.php?Lang=zh-tw\"  title=\"行政人員\"  ><div class=\"menu-item\">行政人員</div></a></li>"                                                                                                                                                                                                                                                                                         
##  [297] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [298] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [299] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [300] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [301] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [302] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [303] "\t</div></ul><!--[if lte IE 6]></td></tr></table></a><![endif]--></li>"                                                                                                                                                                                                                                                                                                                                                                                      
##  [304] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [305] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [306] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [307] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [308] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [309] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [310] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [311] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [312] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [313] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [314] "\t\t<li id=\"Hln_177\" ><a class=\"drop\"   href=\"http://im.cgu.edu.tw/files/11-1055-120.php\"  title=\"教學研究\"><div class=\"menu-item\"><span class=\"cgarrow\"><span></span></span>教學研究</div><!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table summary=\"\"><tr><td><![endif]--><ul><div>"                                                                                                                                           
##  [315] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [316] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [317] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [318] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [319] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [320] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [321] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [322] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [323] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [324] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [325] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [326] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [327] "\t\t<li id=\"Hln_282\" ><a href=\"http://im.cgu.edu.tw/files/11-1055-279.php\"  title=\"實驗室\"  ><div class=\"menu-item\">實驗室</div></a></li>"                                                                                                                                                                                                                                                                                                           
##  [328] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [329] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [330] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [331] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [332] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [333] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [334] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [335] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [336] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [337] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [338] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [339] "\t\t<li id=\"Hln_2757\" ><a href=\"http://im.cgu.edu.tw/files/13-1055-31858.php\"  title=\"教學助教(TA)\"  target=\"_blank\"  ><div class=\"menu-item\">教學助教(TA)</div></a></li>"                                                                                                                                                                                                                                                                         
##  [340] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [341] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [342] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [343] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [344] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [345] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [346] "\t</div></ul><!--[if lte IE 6]></td></tr></table></a><![endif]--></li>"                                                                                                                                                                                                                                                                                                                                                                                      
##  [347] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [348] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [349] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [350] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [351] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [352] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [353] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [354] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [355] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [356] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [357] "\t\t<li id=\"Hln_307\" ><a class=\"drop\"   href=\"http://im.cgu.edu.tw/files/11-1055-283.php\"  title=\"規章辦法\"><div class=\"menu-item\"><span class=\"cgarrow\"><span></span></span>規章辦法</div><!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table summary=\"\"><tr><td><![endif]--><ul><div>"                                                                                                                                           
##  [358] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [359] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [360] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [361] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [362] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [363] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [364] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [365] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [366] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [367] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [368] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [369] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [370] "\t\t<li id=\"Hln_1765\" ><a href=\"http://im.cgu.edu.tw/files/11-1055-4025.php\"  title=\"系所法規\"  ><div class=\"menu-item\">系所法規</div></a></li>"                                                                                                                                                                                                                                                                                                     
##  [371] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [372] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [373] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [374] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [375] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [376] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [377] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [378] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [379] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [380] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [381] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [382] "\t\t<li id=\"Hln_1764\" ><a href=\"http://im.cgu.edu.tw/files/11-1055-4026.php\"  title=\"教師法規\"  ><div class=\"menu-item\">教師法規</div></a></li>"                                                                                                                                                                                                                                                                                                     
##  [383] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [384] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [385] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [386] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [387] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [388] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [389] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [390] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [391] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [392] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [393] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [394] "\t\t<li id=\"Hln_308\" ><a href=\"http://im.cgu.edu.tw/files/11-1055-287.php\"  title=\"大學部規章\"  ><div class=\"menu-item\">大學部規章</div></a></li>"                                                                                                                                                                                                                                                                                                   
##  [395] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [396] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [397] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [398] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [399] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [400] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [401] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [402] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [403] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [404] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [405] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [406] "\t\t<li id=\"Hln_1762\" ><a href=\"http://im.cgu.edu.tw/files/11-1055-4022.php\"  title=\"碩士班規章\"  ><div class=\"menu-item\">碩士班規章</div></a></li>"                                                                                                                                                                                                                                                                                                 
##  [407] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [408] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [409] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [410] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [411] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [412] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [413] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [414] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [415] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [416] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [417] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [418] "\t\t<li id=\"Hln_1223\" ><a href=\"http://im.cgu.edu.tw/files/11-1055-1831.php\"  title=\"在職班規章\"  ><div class=\"menu-item\">在職班規章</div></a></li>"                                                                                                                                                                                                                                                                                                 
##  [419] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [420] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [421] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [422] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [423] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [424] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [425] "\t</div></ul><!--[if lte IE 6]></td></tr></table></a><![endif]--></li>"                                                                                                                                                                                                                                                                                                                                                                                      
##  [426] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [427] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [428] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [429] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [430] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [431] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [432] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [433] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [434] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [435] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [436] "\t\t<li id=\"Hln_304\" ><a class=\"drop\"   href=\"http://im.cgu.edu.tw/files/11-1055-282.php\"  title=\"課程簡介\"><div class=\"menu-item\"><span class=\"cgarrow\"><span></span></span>課程簡介</div><!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table summary=\"\"><tr><td><![endif]--><ul><div>"                                                                                                                                           
##  [437] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [438] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [439] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [440] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [441] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [442] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [443] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [444] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [445] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [446] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [447] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [448] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [449] "\t\t<li id=\"Hln_1158\" ><a href=\"http://im.cgu.edu.tw/files/11-1055-2596.php\"  title=\"大學部課程\"  ><div class=\"menu-item\">大學部課程</div></a></li>"                                                                                                                                                                                                                                                                                                 
##  [450] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [451] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [452] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [453] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [454] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [455] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [456] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [457] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [458] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [459] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [460] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [461] "\t\t<li id=\"Hln_1159\" ><a href=\"http://im.cgu.edu.tw/files/11-1055-2607.php\"  title=\"研究所課程\"  ><div class=\"menu-item\">研究所課程</div></a></li>"                                                                                                                                                                                                                                                                                                 
##  [462] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [463] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [464] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [465] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [466] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [467] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [468] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [469] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [470] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [471] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [472] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [473] "\t\t<li id=\"Hln_1160\" ><a href=\"http://im.cgu.edu.tw/files/11-1055-2608.php\"  title=\"在職班課程\"  ><div class=\"menu-item\">在職班課程</div></a></li>"                                                                                                                                                                                                                                                                                                 
##  [474] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [475] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [476] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [477] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [478] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [479] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [480] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [481] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [482] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [483] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [484] "\t\t<li id=\"Hln_306\" ><a class=\"drop\"   href=\"javascript:void(0)\"  title=\"學程簡介\"><div class=\"menu-item\"><span class=\"cgarrow\"><span></span></span>學程簡介</div><!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table summary=\"\"><tr><td><![endif]--><ul><div>"                                                                                                                                                                   
##  [485] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [486] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [487] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [488] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [489] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [490] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [491] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [492] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [493] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [494] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [495] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [496] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [497] "\t\t<li id=\"Hln_2871\" ><a href=\"http://isma.cgu.edu.tw/bin/home.php\"  title=\"資訊與醫療安全學程\"  ><div class=\"menu-item\">資訊與醫療安全學程</div></a></li>"                                                                                                                                                                                                                                                                                         
##  [498] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [499] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [500] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [501] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [502] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [503] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [504] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [505] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [506] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [507] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [508] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [509] "\t\t<li id=\"Hln_2872\" ><a href=\"http://rfidap.cgu.edu.tw/bin/home.php\"  title=\"RFID物流與供應連學程\"  ><div class=\"menu-item\">RFID物流與供應連學程</div></a></li>"                                                                                                                                                                                                                                                                                   
##  [510] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [511] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [512] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [513] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [514] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [515] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [516] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [517] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [518] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [519] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [520] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [521] "\t\t<li id=\"Hln_2873\" ><a href=\"http://bigdata.cgu.edu.tw/bin/home.php\"  title=\"大數據資料科學與產業應用學程\"  ><div class=\"menu-item\">大數據資料科學與產業應用學程</div></a></li>"                                                                                                                                                                                                                                                                  
##  [522] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [523] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [524] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [525] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [526] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [527] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [528] "\t</div></ul><!--[if lte IE 6]></td></tr></table></a><![endif]--></li>"                                                                                                                                                                                                                                                                                                                                                                                      
##  [529] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [530] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [531] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [532] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [533] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [534] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [535] "\t</div></ul><!--[if lte IE 6]></td></tr></table></a><![endif]--></li>"                                                                                                                                                                                                                                                                                                                                                                                      
##  [536] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [537] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [538] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [539] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [540] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [541] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [542] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [543] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [544] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [545] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [546] "\t\t<li id=\"Hln_175\" ><a class=\"drop\"   href=\"http://im.cgu.edu.tw/files/11-1055-118.php\"  title=\"重要活動\"><div class=\"menu-item\"><span class=\"cgarrow\"><span></span></span>重要活動</div><!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table summary=\"\"><tr><td><![endif]--><ul><div>"                                                                                                                                           
##  [547] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [548] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [549] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [550] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [551] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [552] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [553] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [554] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [555] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [556] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [557] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [558] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [559] "\t\t<li id=\"Hln_1486\" ><a href=\"http://im.cgu.edu.tw/files/11-1055-277.php\"  title=\"社會關懷活動\"  ><div class=\"menu-item\">社會關懷活動</div></a></li>"                                                                                                                                                                                                                                                                                              
##  [560] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [561] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [562] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [563] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [564] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [565] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [566] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [567] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [568] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [569] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [570] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [571] "\t\t<li id=\"Hln_1487\" ><a href=\"http://im.cgu.edu.tw/files/11-1055-2481.php\"  title=\"畢業專題成果展\"  ><div class=\"menu-item\">畢業專題成果展</div></a></li>"                                                                                                                                                                                                                                                                                         
##  [572] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [573] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [574] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [575] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [576] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [577] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [578] "\t</div></ul><!--[if lte IE 6]></td></tr></table></a><![endif]--></li>"                                                                                                                                                                                                                                                                                                                                                                                      
##  [579] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [580] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [581] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [582] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [583] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [584] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [585] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [586] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [587] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [588] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [589] "\t\t<li id=\"Hln_176\" ><a class=\"drop\"   href=\"http://im.cgu.edu.tw/files/11-1055-119.php\"  title=\"傑出表現\"><div class=\"menu-item\"><span class=\"cgarrow\"><span></span></span>傑出表現</div><!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table summary=\"\"><tr><td><![endif]--><ul><div>"                                                                                                                                           
##  [590] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [591] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [592] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [593] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [594] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [595] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [596] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [597] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [598] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [599] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [600] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [601] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [602] "\t\t<li id=\"Hln_1759\" ><a href=\"http://im.cgu.edu.tw/files/11-1055-4012.php\"  title=\"優良教師\"  ><div class=\"menu-item\">優良教師</div></a></li>"                                                                                                                                                                                                                                                                                                     
##  [603] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [604] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [605] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [606] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [607] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [608] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [609] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [610] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [611] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [612] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [613] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [614] "\t\t<li id=\"Hln_1760\" ><a href=\"http://im.cgu.edu.tw/files/11-1055-4014.php\"  title=\"升學榜單\"  ><div class=\"menu-item\">升學榜單</div></a></li>"                                                                                                                                                                                                                                                                                                     
##  [615] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [616] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [617] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [618] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [619] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [620] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [621] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [622] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [623] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [624] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [625] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [626] "\t\t<li id=\"Hln_1761\" ><a href=\"http://im.cgu.edu.tw/files/11-1055-4015.php\"  title=\"得獎資訊\"  ><div class=\"menu-item\">得獎資訊</div></a></li>"                                                                                                                                                                                                                                                                                                     
##  [627] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [628] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [629] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [630] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [631] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [632] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [633] "\t</div></ul><!--[if lte IE 6]></td></tr></table></a><![endif]--></li>"                                                                                                                                                                                                                                                                                                                                                                                      
##  [634] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [635] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [636] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [637] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [638] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [639] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [640] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [641] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [642] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [643] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [644] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [645] "\t\t<li id=\"Hln_309\" ><a href=\"http://im.cgu.edu.tw/files/11-1055-284.php\"  title=\"招生資訊\"  ><div class=\"menu-item\">招生資訊</div></a></li>"                                                                                                                                                                                                                                                                                                       
##  [646] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [647] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [648] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [649] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [650] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [651] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [652] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [653] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [654] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [655] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [656] "\t\t<li id=\"Hln_178\" ><a class=\"drop\"   href=\"http://im.cgu.edu.tw/files/11-1055-121.php\"  title=\"國際交流\"><div class=\"menu-item\"><span class=\"cgarrow\"><span></span></span>國際交流</div><!--[if IE 7]><!--></a><!--<![endif]--><!--[if lte IE 6]><table summary=\"\"><tr><td><![endif]--><ul><div>"                                                                                                                                           
##  [657] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [658] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [659] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [660] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [661] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [662] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [663] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [664] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [665] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [666] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [667] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [668] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [669] "\t\t<li id=\"Hln_283\" ><a href=\"http://im.cgu.edu.tw/files/11-1055-280.php\"  title=\"交換學生\"  ><div class=\"menu-item\">交換學生</div></a></li>"                                                                                                                                                                                                                                                                                                       
##  [670] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [671] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [672] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [673] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [674] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [675] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [676] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [677] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [678] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [679] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [680] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [681] "\t\t<li id=\"Hln_2696\" ><a href=\"http://im.cgu.edu.tw/files/11-1055-5629.php\"  title=\"邀請演講\"  ><div class=\"menu-item\">邀請演講</div></a></li>"                                                                                                                                                                                                                                                                                                     
##  [682] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [683] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [684] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [685] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [686] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [687] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [688] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [689] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [690] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [691] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [692] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [693] "\t\t<li id=\"Hln_2889\" ><a href=\"http://im.cgu.edu.tw/files/11-1055-6609.php\"  title=\"國際參訪\"  ><div class=\"menu-item\">國際參訪</div></a></li>"                                                                                                                                                                                                                                                                                                     
##  [694] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [695] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [696] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [697] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [698] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [699] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [700] "\t</div></ul><!--[if lte IE 6]></td></tr></table></a><![endif]--></li>"                                                                                                                                                                                                                                                                                                                                                                                      
##  [701] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [702] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [703] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [704] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [705] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [706] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [707] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [708] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [709] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [710] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [711] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [712] "\t\t<li id=\"Hln_311\" ><a href=\"http://im.cgu.edu.tw/files/11-1055-285.php\"  title=\"系友資訊\"  ><div class=\"menu-item\">系友資訊</div></a></li>"                                                                                                                                                                                                                                                                                                       
##  [713] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [714] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [715] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [716] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [717] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [718] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [719] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [720] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [721] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [722] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [723] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [724] "\t\t<li id=\"Hln_313\" ><a href=\"http://im.cgu.edu.tw/files/11-1055-286.php\"  title=\"下載專區\"  ><div class=\"menu-item\">下載專區</div></a></li>"                                                                                                                                                                                                                                                                                                       
##  [725] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [726] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [727] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [728] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [729] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [730] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [731] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [732] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [733] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [734] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [735] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [736] "\t\t<li id=\"Hln_179\" ><a href=\"http://im.cgu.edu.tw/files/11-1055-122.php\"  title=\"聯絡方式\"  ><div class=\"menu-item\">聯絡方式</div></a></li>"                                                                                                                                                                                                                                                                                                       
##  [737] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [738] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [739] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [740] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [741] "</ul></div></div></div>"                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [742] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [743] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [744] "   "                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [745] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [746] "   "                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [747] "      "                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [748] "      "                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [749] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [750] "<script type='text/javascript'>"                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [751] "$(function(){"                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [752] "divOs.openSajaxUrl('banner1','/bin/showmodule.php?Type=sz_mstr&Nbr=22');"                                                                                                                                                                                                                                                                                                                                                                                    
##  [753] "});"                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [754] "</script>"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [755] "<style>"                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [756] ".top-menu ul {"                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [757] "    background: url(\"/style/5005/images/tm-bg.gif\") no-repeat scroll 0 0 transparent;"                                                                                                                                                                                                                                                                                                                                                                     
##  [758] "    height: 26px;"                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [759] "    line-height: 24px;"                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [760] "    padding: 0 5px;"                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [761] "}"                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [762] "</style>"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [763] "   "                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [764] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [765] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [766] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [767] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [768] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [769] "<script language=\"javascript\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [770] "var _LoginHln = new hashUtil();"                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [771] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [772] "var _LogoutHln = new hashUtil();"                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [773] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [774] "var _HomeHln = new hashUtil();"                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [775] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [776] "var _InternalHln = new hashUtil();"                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [777] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [778] "if(typeof(isHome)=='undefined') var isHome=false; "                                                                                                                                                                                                                                                                                                                                                                                                          
##  [779] "if(typeof(loginStat)=='undefined') {"                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [780] "   var UidCookie = new strUtil(divOs.Cookie.getCookie(\"Cust\"));"                                                                                                                                                                                                                                                                                                                                                                                           
##  [781] "   if(UidCookie.trim()!=\"\") loginStat=\"login\";"                                                                                                                                                                                                                                                                                                                                                                                                          
##  [782] "   else loginStat=\"logout\";"                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [783] "}"                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [784] "dealHln(isHome,loginStat);"                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [785] "function setHlnStat(p_hash,p_style){"                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [786] "    var itemId,item;"                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [787] "    while(!p_hash.isEOF()){"                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [788] "        itemId = p_hash.read()"                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [789] "/*"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [790] "        item = document.getElementById(itemId);"                                                                                                                                                                                                                                                                                                                                                                                                             
##  [791] "        if(item!=null && typeof(item)!='undefined')"                                                                                                                                                                                                                                                                                                                                                                                                         
##  [792] "            item.style.display = p_style;"                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [793] "*/"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [794] "      item = $('div.headnav').find('#'+itemId);"                                                                                                                                                                                                                                                                                                                                                                                                             
##  [795] "      if(p_style == 'block') item.show();"                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [796] "      else item.hide();"                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [797] "    }"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [798] "    p_hash.resetPointer();"                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [799] "}"                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [800] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [801] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [802] "function openLangUrl(p_lang) {"                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [803] "\tvar curlang = divOs.getUrlParam(\"Lang\");"                                                                                                                                                                                                                                                                                                                                                                                                                
##  [804] "\tif(curlang!=\"\") {"                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [805] "\t\tvar str = window.location+\"\";"                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [806] "\t\twindow.location = str.replace(\"Lang=\"+curlang,\"Lang=\"+p_lang);"                                                                                                                                                                                                                                                                                                                                                                                      
##  [807] "\t}"                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [808] "\telse {"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [809] "\t   if(window.location.href.indexOf(\"?\")>0)"                                                                                                                                                                                                                                                                                                                                                                                                              
##  [810] "\t\t\twindow.location=window.location+'&Lang='+p_lang;"                                                                                                                                                                                                                                                                                                                                                                                                      
##  [811] "\t\telse"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [812] "\t\t\twindow.location=window.location+'?Lang='+p_lang;"                                                                                                                                                                                                                                                                                                                                                                                                      
##  [813] "\t}"                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [814] "}"                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [815] "</script><noscript>Your browser does not support JavaScript!</noscript>"                                                                                                                                                                                                                                                                                                                                                                                     
##  [816] "<!-- generated at Fri Feb 19 2016 14:30:39 --></div>"                                                                                                                                                                                                                                                                                                                                                                                                        
##  [817] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [818] "\t</div></div>"                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [819] "\t<!-- Head End -->"                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [820] "\t<!-- MainBody Begin -->"                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [821] "\t<div class=\"mainbody\"><div class=\"mainbody-inner\">"                                                                                                                                                                                                                                                                                                                                                                                                    
##  [822] "\t<!-- Body Row Begin : row_1/row_2/row_3/row_4/row_5 -->"                                                                                                                                                                                                                                                                                                                                                                                                   
##  [823] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [824] " \t"                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [825] "   "                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [826] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [827] "\t<div class=\"row_0\">"                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [828] "\t\t<!-- Box Div Begin -->"                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [829] "\t\t<div class=\"box\"><div class=\"box-inner\">"                                                                                                                                                                                                                                                                                                                                                                                                            
##  [830] "\t\t<!-- Box Table Begin -->"                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [831] "\t\t<table class=\"maincontent\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\" border=\"0\" summary=\"\">"                                                                                                                                                                                                                                                                                                                                              
##  [832] "\t\t<tbody><tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [833] "\t\t\t<!-- Column Begin -->"                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [834] "\t \t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [835] "\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [836] "\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [837] "\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [838] "\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [839] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [840] "\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [841] "\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [842] "\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [843] "\t\t\t<td class=\"col_01\" width=\"20%\" valign=\"top\">"                                                                                                                                                                                                                                                                                                                                                                                                    
##  [844] "\t\t\t<div class=\"col_01\">"                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [845] "\t\t\t\t<!-- Column Top Begin -->"                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [846] "\t\t\t\t<div class=\"col_top\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [847] "\t\t\t\t\t<div class=\"ct_03\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [848] "\t\t\t\t\t<div class=\"ct_02\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [849] "\t\t\t\t\t<div class=\"ct_01\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [850] "\t\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [851] "\t\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [852] "\t\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [853] "\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [854] "\t\t\t\t<!-- Column Top End -->"                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [855] "\t\t\t\t<!-- Column Middle Begin -->"                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [856] "\t\t\t\t<div class=\"col_middle\">"                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [857] "\t\t\t\t\t<div class=\"cm_03\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [858] "\t\t\t\t\t<div class=\"cm_02\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [859] "\t\t\t\t\t<div class=\"cm_01\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [860] "\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [861] "\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [862] "\t\t\t\t\t   "                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [863] "\t\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [864] "\t\t\t\t\t\t<div id=\"Dyn_1_1\" class=\"M11245 M11245_180  \">"                                                                                                                                                                                                                                                                                                                                                                                              
##  [865] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [866] "<div class=\"module module-link md_style1 self\">"                                                                                                                                                                                                                                                                                                                                                                                                           
##  [867] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [868] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [869] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [870] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [871] "<div class=\"md_top show_title \"><div class=\"mt_03\"><div class=\"mt_02\"><div class=\"mt_01\">"                                                                                                                                                                                                                                                                                                                                                           
##  [872] "\t<div class=\"h3\">最新活動訊息</div>"                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [873] "</div></div></div></div>"                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [874] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [875] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [876] "\t<div class=\"md_middle\">"                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [877] "\t<div class=\"mm_03\"><div class=\"mm_02\"><div class=\"mm_01\">"                                                                                                                                                                                                                                                                                                                                                                                           
##  [878] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [879] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [880] "\t\t<table summary=\"list\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" class=\"baseTB list_TIDY\">"                                                                                                                                                                                                                                                                                                                                     
##  [881] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [882] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [883] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [884] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [885] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [886] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [887] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [888] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [889] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [890] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [891] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [892] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
##  [893] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
##  [894] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
##  [895] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [896] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [897] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [898] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [899] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [900] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [901] "<tr class=\"row_1\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [902] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [903] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [904] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [905] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [906] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
##  [907] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [908] "<div class=\"h5\">"                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [909] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [910] "<span class=\"ptname \"><a href=\"http://im.cgu.edu.tw/files/11-1055-2481.php\" target=\"_blank\"  title=\"畢業專題成果展\" >畢業專題成果展</a></span>"                                                                                                                                                                                                                                                                                                      
##  [911] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [912] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [913] "<div class=\"message\">"                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [914] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [915] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [916] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [917] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [918] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [919] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [920] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [921] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
##  [922] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [923] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [924] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [925] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [926] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [927] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [928] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [929] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
##  [930] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
##  [931] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
##  [932] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [933] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [934] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [935] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [936] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [937] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [938] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [939] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [940] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [941] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [942] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [943] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [944] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [945] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
##  [946] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
##  [947] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
##  [948] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [949] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [950] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [951] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [952] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [953] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [954] "<tr class=\"row_2\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [955] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [956] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [957] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [958] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [959] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
##  [960] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [961] "<div class=\"h5\">"                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [962] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [963] "<span class=\"ptname \"><a href=\"http://im.cgu.edu.tw/ezfiles/55/1055/img/1146/213901221.pdf\" target=\"_blank\"  title=\"碩士班計畫書審查\" >碩士班計畫書審查</a></span>"                                                                                                                                                                                                                                                                                  
##  [964] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [965] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [966] "<div class=\"message\">"                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [967] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [968] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [969] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [970] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [971] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [972] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [973] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [974] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
##  [975] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [976] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [977] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [978] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [979] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [980] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [981] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [982] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
##  [983] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
##  [984] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
##  [985] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [986] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [987] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [988] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [989] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [990] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [991] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [992] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [993] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [994] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [995] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [996] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [997] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [998] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
##  [999] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1000] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1001] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1002] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1003] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1004] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1005] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1006] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1007] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1008] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1009] "<tr class=\"row_1\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1010] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1011] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1012] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1013] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1014] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1015] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1016] "<div class=\"h5\">"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1017] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1018] "<span class=\"ptname \"><a href=\"http://www2.is.cgu.edu.tw/alumnus/login.aspx\" target=\"_blank\"  title=\"畢業校友資料登錄\" >畢業校友資料登錄</a></span>"                                                                                                                                                                                                                                                                                                 
## [1019] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1020] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1021] "<div class=\"message\">"                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1022] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1023] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1024] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1025] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1026] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1027] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1028] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1029] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1030] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1031] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1032] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1033] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1034] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1035] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1036] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1037] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1038] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1039] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1040] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1041] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1042] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1043] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1044] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1045] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1046] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1047] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1048] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1049] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1050] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1051] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1052] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1053] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1054] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1055] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1056] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1057] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1058] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1059] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1060] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1061] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1062] "<tr class=\"row_2\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1063] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1064] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1065] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1066] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1067] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1068] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1069] "<div class=\"h5\">"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1070] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1071] "<span class=\"ptname \"><a href=\"http://personnel.cgu.edu.tw/files/13-1010-14297.php\" target=\"_blank\"  title=\"教育訓練資訊網\" >教育訓練資訊網</a></span>"                                                                                                                                                                                                                                                                                              
## [1072] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1073] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1074] "<div class=\"message\">"                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1075] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1076] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1077] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1078] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1079] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1080] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1081] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1082] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1083] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1084] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1085] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1086] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1087] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1088] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1089] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1090] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1091] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1092] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1093] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1094] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1095] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1096] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1097] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1098] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1099] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1100] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1101] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1102] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1103] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1104] "</table>"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1105] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1106] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1107] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1108] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1109] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1110] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1111] "\t</div></div></div>"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1112] "\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1113] "\t<div class=\"md_bottom\"><div class=\"mb_03\"><div class=\"mb_02\"><div class=\"mb_01\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" alt=\"\"/></div></div></div></div>"                                                                                                                                                                                                                                                                             
## [1114] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1115] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1116] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1117] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1118] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1119] "\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1120] "\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1121] "\t\t\t\t\t   "                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1122] "\t\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1123] "\t\t\t\t\t\t<div id=\"Dyn_1_2\" class=\"M10256 M10256_50  \">"                                                                                                                                                                                                                                                                                                                                                                                               
## [1124] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1125] "<div class=\"module module-link md_style2 self\">"                                                                                                                                                                                                                                                                                                                                                                                                           
## [1126] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1127] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1128] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1129] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1130] "<div class=\"md_top hide_title \"><div class=\"mt_03\"><div class=\"mt_02\"><div class=\"mt_01\">"                                                                                                                                                                                                                                                                                                                                                           
## [1131] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1132] "</div></div></div></div>"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1133] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1134] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1135] "\t<div class=\"md_middle\">"                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1136] "\t<div class=\"mm_03\"><div class=\"mm_02\"><div class=\"mm_01\">"                                                                                                                                                                                                                                                                                                                                                                                           
## [1137] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1138] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1139] "\t\t<table summary=\"list\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" class=\"baseTB list_TIDY\">"                                                                                                                                                                                                                                                                                                                                     
## [1140] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1141] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1142] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1143] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1144] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1145] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1146] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1147] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1148] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1149] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1150] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1151] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1152] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1153] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1154] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1155] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1156] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1157] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1158] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1159] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1160] "<tr class=\"row_1\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1161] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1162] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1163] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1164] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1165] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1166] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1167] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1168] "<a class=\"item-image\" href=\"/files/11-1055-284.php?Lang=zh-tw\" target=\"_blank\"  ><img src=\"/ezfiles/55/1055/pictures/linkdet_2592_3989220_40664.jpg\"  width=\"175\" height=\"40\"   alt=\"招生資訊\" title=\"招生資訊\" ></a>"                                                                                                                                                                                                                       
## [1169] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1170] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1171] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1172] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1173] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1174] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1175] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1176] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1177] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1178] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1179] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1180] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1181] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1182] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1183] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1184] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1185] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1186] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1187] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1188] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1189] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1190] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1191] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1192] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1193] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1194] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1195] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1196] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1197] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1198] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1199] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1200] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1201] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1202] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1203] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1204] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1205] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1206] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1207] "<tr class=\"row_2\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1208] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1209] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1210] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1211] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1212] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1213] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1214] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1215] "<a class=\"item-image\" href=\"http://im.cgu.edu.tw/files/11-1055-2481.php\" target=\"_blank\"  ><img src=\"/ezfiles/55/1055/pictures/linkdet_2294_3118743_40783.jpg\"  width=\"175\" height=\"40\"   alt=\"畢業成果展\" title=\"畢業成果展\" ></a>"                                                                                                                                                                                                         
## [1216] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1217] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1218] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1219] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1220] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1221] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1222] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1223] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1224] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1225] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1226] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1227] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1228] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1229] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1230] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1231] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1232] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1233] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1234] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1235] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1236] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1237] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1238] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1239] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1240] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1241] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1242] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1243] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1244] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1245] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1246] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1247] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1248] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1249] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1250] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1251] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1252] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1253] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1254] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1255] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1256] "<tr class=\"row_1\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1257] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1258] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1259] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1260] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1261] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1262] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1263] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1264] "<a class=\"item-image\" href=\"http://mgt.cgu.edu.tw/files/11-1005-5642.php\" target=\"_blank\"  ><img src=\"/ezfiles/55/1055/pictures/linkdet_2049_6346308_09178.jpg\"  width=\"175\" height=\"35\"   alt=\"管院通訊\" title=\"管院通訊\" ></a>"                                                                                                                                                                                                            
## [1265] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1266] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1267] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1268] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1269] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1270] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1271] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1272] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1273] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1274] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1275] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1276] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1277] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1278] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1279] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1280] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1281] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1282] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1283] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1284] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1285] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1286] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1287] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1288] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1289] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1290] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1291] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1292] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1293] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1294] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1295] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1296] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1297] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1298] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1299] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1300] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1301] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1302] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1303] "<tr class=\"row_2\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1304] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1305] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1306] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1307] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1308] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1309] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1310] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1311] "<a class=\"item-image\" href=\"http://isma.cgu.edu.tw/files/13-1094-37285.php\" target=\"_blank\"  ><img src=\"/ezfiles/55/1055/pictures/linkdet_2430_4149271_09665.jpg\"  width=\"175\" height=\"90\"   alt=\"iso 20000\" title=\"iso 20000\" ></a>"                                                                                                                                                                                                        
## [1312] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1313] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1314] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1315] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1316] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1317] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1318] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1319] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1320] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1321] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1322] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1323] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1324] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1325] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1326] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1327] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1328] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1329] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1330] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1331] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1332] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1333] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1334] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1335] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1336] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1337] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1338] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1339] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1340] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1341] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1342] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1343] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1344] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1345] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1346] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1347] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1348] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1349] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1350] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1351] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1352] "<tr class=\"row_1\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1353] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1354] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1355] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1356] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1357] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1358] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1359] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1360] "<a class=\"item-image\" href=\"http://isma.cgu.edu.tw/files/13-1094-37283.php\" target=\"_blank\"  ><img src=\"/ezfiles/55/1055/pictures/linkdet_2006_5823058_09801.jpg\"  width=\"174\" height=\"80\"   alt=\"ISO 27001\" title=\"ISO 27001\" ></a>"                                                                                                                                                                                                        
## [1361] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1362] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1363] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1364] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1365] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1366] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1367] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1368] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1369] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1370] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1371] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1372] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1373] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1374] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1375] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1376] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1377] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1378] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1379] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1380] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1381] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1382] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1383] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1384] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1385] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1386] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1387] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1388] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1389] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1390] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1391] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1392] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1393] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1394] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1395] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1396] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1397] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1398] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1399] "<tr class=\"row_2\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1400] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1401] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1402] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1403] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1404] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1405] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1406] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1407] "<a class=\"item-image\" href=\"http://isma.cgu.edu.tw/files/13-1094-37251.php\" target=\"_blank\"  ><img src=\"/ezfiles/55/1055/pictures/linkdet_2431_1820120_09829.jpg\"  width=\"175\" height=\"34\"   alt=\"ceh\" title=\"ceh\" ></a>"                                                                                                                                                                                                                    
## [1408] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1409] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1410] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1411] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1412] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1413] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1414] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1415] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1416] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1417] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1418] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1419] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1420] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1421] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1422] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1423] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1424] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1425] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1426] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1427] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1428] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1429] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1430] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1431] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1432] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1433] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1434] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1435] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1436] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1437] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1438] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1439] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1440] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1441] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1442] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1443] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1444] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1445] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1446] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1447] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1448] "<tr class=\"row_1\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1449] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1450] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1451] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1452] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1453] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1454] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1455] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1456] "<a class=\"item-image\" href=\"http://isma.cgu.edu.tw/files/13-1094-37287.php\" target=\"_blank\"  ><img src=\"/ezfiles/55/1055/pictures/linkdet_2432_1181911_09844.jpg\"  width=\"175\" height=\"127\"   alt=\"bs 10012\" title=\"bs 10012\" ></a>"                                                                                                                                                                                                         
## [1457] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1458] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1459] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1460] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1461] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1462] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1463] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1464] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1465] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1466] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1467] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1468] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1469] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1470] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1471] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1472] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1473] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1474] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1475] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1476] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1477] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1478] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1479] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1480] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1481] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1482] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1483] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1484] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1485] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1486] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1487] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1488] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1489] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1490] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1491] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1492] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1493] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1494] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1495] "<tr class=\"row_2\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1496] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1497] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1498] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1499] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1500] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1501] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1502] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1503] "<a class=\"item-image\" href=\"http://isma.cgu.edu.tw/files/13-1094-37335.php\" target=\"_blank\"  ><img src=\"/ezfiles/55/1055/pictures/linkdet_2433_2780141_09861.jpg\"  width=\"175\" height=\"121\"   alt=\"ccna\" title=\"ccna\" ></a>"                                                                                                                                                                                                                 
## [1504] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1505] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1506] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1507] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1508] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1509] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1510] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1511] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1512] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1513] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1514] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1515] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1516] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1517] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1518] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1519] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1520] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1521] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1522] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1523] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1524] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1525] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1526] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1527] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1528] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1529] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1530] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1531] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1532] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1533] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1534] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1535] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [1536] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1537] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1538] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1539] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1540] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1541] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1542] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1543] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1544] "<tr class=\"row_1\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1545] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1546] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1547] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1548] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1549] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1550] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1551] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1552] "<a class=\"item-image\" href=\"http://isma.cgu.edu.tw/files/13-1094-37337.php\" target=\"_blank\"  ><img src=\"/ezfiles/55/1055/pictures/linkdet_2434_8950592_09873.jpg\"  width=\"175\" height=\"70\"   alt=\"pcip\" title=\"pcip\" ></a>"                                                                                                                                                                                                                  
## [1553] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1554] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1555] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1556] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1557] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1558] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1559] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1560] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1561] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1562] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1563] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1564] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1565] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1566] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1567] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1568] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [1569] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1570] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1571] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1572] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1573] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1574] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1575] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1576] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1577] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1578] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1579] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1580] "</table>"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1581] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1582] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1583] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1584] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1585] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1586] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1587] "\t</div></div></div>"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1588] "\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1589] "\t<div class=\"md_bottom\"><div class=\"mb_03\"><div class=\"mb_02\"><div class=\"mb_01\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" alt=\"\"/></div></div></div></div>"                                                                                                                                                                                                                                                                             
## [1590] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1591] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1592] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1593] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1594] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1595] "\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1596] "\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1597] "\t\t\t\t\t   "                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1598] "\t\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1599] "\t\t\t\t\t\t<div id=\"Dyn_1_3\" class=\"M10255 M10255_25  \">"                                                                                                                                                                                                                                                                                                                                                                                               
## [1600] "<div class=\"module-loading\"><div class=\"md_top\"><div class=\"mt_03\"><div class=\"mt_02\"><div class=\"mt_01\"><h3>校友的話</h3></div></div></div></div><div class=\"md_middle\"><div class=\"mm_03\"><div class=\"mm_02\"><div class=\"mm_01\">數據載入中...</div></div></div></div><div class=\"md_bottom\"><div class=\"mb_03\"><div class=\"mb_02\"><div class=\"mb_01\"></div></div></div></div></div>"                                             
## [1601] "<script language=\"javascript\" >"                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1602] "divOs.openSajaxUrl(\"Dyn_1_3\",'/bin/showmodule.php?O=1055&Mo=10255&Type=rcg_mstr&Nbr=25&Col=1&Row=3&Page=&Lang=zh-tw&PageLang=zh-tw&Param=%24Rcg%3D25%3B');"                                                                                                                                                                                                                                                                                                
## [1603] "</script>"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1604] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1605] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1606] "\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1607] "\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1608] "\t\t\t\t\t   "                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1609] "\t\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1610] "\t\t\t\t\t\t<div id=\"Dyn_1_4\" class=\"M12507 M12507_107  \">"                                                                                                                                                                                                                                                                                                                                                                                              
## [1611] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1612] "<div class=\"module module-ads md_style1\">"                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1613] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1614] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1615] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1616] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1617] "<div class=\"md_top show_title \"><div class=\"mt_03\"><div class=\"mt_02\"><div class=\"mt_01\">"                                                                                                                                                                                                                                                                                                                                                           
## [1618] "\t<div class=\"h3\">QRcode</div>"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1619] "</div></div></div></div>"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1620] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1621] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1622] "<div class=\"md_middle\">"                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1623] "<div class=\"mm_03\">"                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1624] "<div class=\"mm_02\">"                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1625] "<div class=\"mm_01\">"                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1626] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1627] "<div></div><img alt=\"\" src=\"http://im.cgu.edu.tw/images/clear.gif\" onload=\""                                                                                                                                                                                                                                                                                                                                                                            
## [1628] "var obj=divOs.getParentNodeById(this,'Dyn_',1);"                                                                                                                                                                                                                                                                                                                                                                                                             
## [1629] "if(obj!=null){"                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1630] "   previousSibling.id=obj.id+'_ads_a5d956882c74c56b2b4714f32046eadcd';"                                                                                                                                                                                                                                                                                                                                                                                      
## [1631] "   divOs.openSajaxUrl(obj.id+'_ads_a5d956882c74c56b2b4714f32046eadcd','/bin/showads.php?O=1055&Size=107&Cnt=1');"                                                                                                                                                                                                                                                                                                                                            
## [1632] "};"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1633] "\"/>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1634] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1635] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1636] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1637] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1638] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1639] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1640] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1641] "<div class=\"md_bottom\"><div class=\"mb_03\"><div class=\"mb_02\"><div class=\"mb_01\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" alt=\"\"/></div></div></div></div>"                                                                                                                                                                                                                                                                               
## [1642] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1643] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1644] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1645] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1646] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1647] "\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1648] "\t\t\t\t\t<div class=\"wrap\"></div>"                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1649] "\t\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1650] "\t\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1651] "\t\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1652] "\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1653] "\t\t\t\t<div class=\"col_bottom\">"                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1654] "\t\t\t\t\t<div class=\"cb_03\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1655] "\t\t\t\t\t<div class=\"cb_02\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1656] "\t\t\t\t\t<div class=\"cb_01\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1657] "\t\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1658] "\t\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1659] "\t\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1660] "\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1661] "\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1662] "\t\t\t</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1663] "\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1664] "\t \t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1665] "\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1666] "\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1667] "\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1668] "\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1669] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1670] "\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1671] "\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1672] "\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1673] "\t\t\t<td class=\"col_02\" width=\"55%\" valign=\"top\">"                                                                                                                                                                                                                                                                                                                                                                                                    
## [1674] "\t\t\t<div class=\"col_02\">"                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1675] "\t\t\t\t<!-- Column Top Begin -->"                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1676] "\t\t\t\t<div class=\"col_top\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1677] "\t\t\t\t\t<div class=\"ct_03\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1678] "\t\t\t\t\t<div class=\"ct_02\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1679] "\t\t\t\t\t<div class=\"ct_01\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1680] "\t\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1681] "\t\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1682] "\t\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1683] "\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1684] "\t\t\t\t<!-- Column Top End -->"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1685] "\t\t\t\t<!-- Column Middle Begin -->"                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1686] "\t\t\t\t<div class=\"col_middle\">"                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1687] "\t\t\t\t\t<div class=\"cm_03\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1688] "\t\t\t\t\t<div class=\"cm_02\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1689] "\t\t\t\t\t<div class=\"cm_01\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1690] "\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1691] "\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1692] "\t\t\t\t\t   "                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1693] "\t\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1694] "\t\t\t\t\t\t<div id=\"Dyn_2_1\" class=\"M10341 M10341_45  \">"                                                                                                                                                                                                                                                                                                                                                                                               
## [1695] "<div class=\"module-loading\"><div class=\"md_top\"><div class=\"mt_03\"><div class=\"mt_02\"><div class=\"mt_01\"><h3>AD_公告</h3></div></div></div></div><div class=\"md_middle\"><div class=\"mm_03\"><div class=\"mm_02\"><div class=\"mm_01\">數據載入中...</div></div></div></div><div class=\"md_bottom\"><div class=\"mb_03\"><div class=\"mb_02\"><div class=\"mb_01\"></div></div></div></div></div>"                                              
## [1696] "<script language=\"javascript\" >"                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1697] "divOs.openSajaxUrl(\"Dyn_2_1\",'/bin/showmodule.php?O=1055&Mo=10341&Type=rcg_mstr&Nbr=45&Col=2&Row=1&Page=&Lang=zh-tw&PageLang=zh-tw&Param=%24Rcg%3D45%3B');"                                                                                                                                                                                                                                                                                                
## [1698] "</script>"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1699] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1700] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1701] "\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1702] "\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1703] "\t\t\t\t\t   "                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1704] "\t\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [1705] "\t\t\t\t\t\t<div id=\"Dyn_2_2\" class=\"M10391 M10391_4  \">"                                                                                                                                                                                                                                                                                                                                                                                                
## [1706] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1707] "<div id=\"a626b00948d123188cbd4694bb08d9760_Div\" class=\"module module-complex md_style1 self\">"                                                                                                                                                                                                                                                                                                                                                           
## [1708] "<div class=\"md_top\">"                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1709] "<div class=\"mt_03\">"                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1710] "<div class=\"mt_02\">"                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1711] "<div class=\"mt_01\">"                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1712] "<div class=\"submenu\">"                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1713] "<div class=\"submenu-inner\">"                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1714] "   <ul>"                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1715] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1716] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1717] "      <li><img class=\"img_loading\" alt=\"\" src=\"http://im.cgu.edu.tw/images/clear.gif\" onload=\"var obj=divOs.getParentNodeById(this,'Dyn_',1);if(obj!=null){nextSibling.id=nextSibling.id+'_'+obj.id;};\"/><a tabindex=\"0\" href=\"javascript:void(0)\" onmouseup=\"\" onkeyup=\""                                                                                                                                                                    
## [1718] "var currenttab=0;"                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1719] "var event = arguments[0]||window.event;"                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1720] "var currentKey = event.charCode||event.keyCode;"                                                                                                                                                                                                                                                                                                                                                                                                             
## [1721] "if(currentKey!=37 && currentKey!=39) return;"                                                                                                                                                                                                                                                                                                                                                                                                                
## [1722] "if(currenttab==0 && currentKey==37) return;"                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1723] "if((currenttab+1)==4 && currentKey==39) return;"                                                                                                                                                                                                                                                                                                                                                                                                             
## [1724] "var obj=divOs.getParentNodeById(this,'Dyn_',1);"                                                                                                                                                                                                                                                                                                                                                                                                             
## [1725] "var TagLen = 4;"                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1726] "var p_nbr=obj.id;"                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1727] "for (var i=0;i<TagLen;i++){"                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1728] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+i+'_'+p_nbr).attr('tabIndex',-1);"                                                                                                                                                                                                                                                                                                                                                                          
## [1729] "}"                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1730] "if(currentKey==37){"                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1731] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+(currenttab-1)+'_'+p_nbr).attr('tabIndex',0);"                                                                                                                                                                                                                                                                                                                                                              
## [1732] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+(currenttab-1)+'_'+p_nbr).focus();"                                                                                                                                                                                                                                                                                                                                                                         
## [1733] "}"                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1734] "else if(currentKey==39){"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1735] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+(currenttab+1)+'_'+p_nbr).attr('tabIndex',0);"                                                                                                                                                                                                                                                                                                                                                              
## [1736] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+(currenttab+1)+'_'+p_nbr).focus();"                                                                                                                                                                                                                                                                                                                                                                         
## [1737] "}"                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1738] "\" id=\"sm_a626b00948d123188cbd4694bb08d9760_0\"   onfocus=\"this.onclick()\" onkeypress=\"var event = arguments[0]||window.event;var currentKey = event.charCode||event.keyCode;if(currentKey==13) this.onclick();\" onclick=\""                                                                                                                                                                                                                            
## [1739] "$('#sm_href_a626b00948d123188cbd4694bb08d9760_0').css('display','');"                                                                                                                                                                                                                                                                                                                                                                                        
## [1740] "var obj=divOs.getParentNodeById(this,'Dyn_',1);"                                                                                                                                                                                                                                                                                                                                                                                                             
## [1741] "var TagLen = 4;"                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1742] "var p_nbr=obj.id;"                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1743] "   for (var i=0;i<TagLen;i++){"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1744] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+i+'_'+p_nbr).removeClass();"                                                                                                                                                                                                                                                                                                                                                                                
## [1745] "      $('#sm_div_a626b00948d123188cbd4694bb08d9760_'+i+'_'+p_nbr).removeClass().addClass('hidethis');"                                                                                                                                                                                                                                                                                                                                                       
## [1746] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+i+'_'+p_nbr).attr('tabIndex',-1);"                                                                                                                                                                                                                                                                                                                                                                          
## [1747] "   }"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1748] "   $('#sm_a626b00948d123188cbd4694bb08d9760_0_'+p_nbr).removeClass().addClass('active');"                                                                                                                                                                                                                                                                                                                                                                    
## [1749] "   $('#sm_div_a626b00948d123188cbd4694bb08d9760_0_'+p_nbr).removeClass().addClass('showthis');"                                                                                                                                                                                                                                                                                                                                                              
## [1750] "   $('#sm_a626b00948d123188cbd4694bb08d9760_0_'+p_nbr).attr('tabIndex',0);"                                                                                                                                                                                                                                                                                                                                                                                  
## [1751] "   var obj =$('#sm_div_a626b00948d123188cbd4694bb08d9760_0_'+p_nbr);"                                                                                                                                                                                                                                                                                                                                                                                        
## [1752] "   if (obj.attr('static')=='off'){"                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1753] "      var id='sm_div_a626b00948d123188cbd4694bb08d9760_0_'+p_nbr;"                                                                                                                                                                                                                                                                                                                                                                                           
## [1754] "      obj.attr('static','on');"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1755] "      url = $('#hd_a626b00948d123188cbd4694bb08d9760_0').val();"                                                                                                                                                                                                                                                                                                                                                                                             
## [1756] "      divOs.openSajaxUrl(id,url);"                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1757] "   };"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1758] "var obj=divOs.getParentNodeById(this,'a626b00948d123188cbd4694bb08d9760_Div',1);"                                                                                                                                                                                                                                                                                                                                                                            
## [1759] "   obj=divOs.childNode(obj,1);"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1760] "   obj=divOs.childNode(obj,0);"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1761] "   obj=divOs.childNode(obj,0);"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1762] "   obj=divOs.childNode(obj,0);"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1763] "obj.style.height='';"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1764] "setTimeout(resizeTrigger,1500);"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1765] "\" class=\"active\"><div><div>最新消息</div></div></a></li>"                                                                                                                                                                                                                                                                                                                                                                                                 
## [1766] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1767] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1768] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1769] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1770] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1771] "      <li><img class=\"img_loading\" alt=\"\" src=\"http://im.cgu.edu.tw/images/clear.gif\" onload=\"var obj=divOs.getParentNodeById(this,'Dyn_',1);if(obj!=null){nextSibling.id=nextSibling.id+'_'+obj.id;};\"/><a tabindex=\"-1\" href=\"javascript:void(0)\" onmouseup=\"\" onkeyup=\""                                                                                                                                                                   
## [1772] "var currenttab=1;"                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1773] "var event = arguments[0]||window.event;"                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1774] "var currentKey = event.charCode||event.keyCode;"                                                                                                                                                                                                                                                                                                                                                                                                             
## [1775] "if(currentKey!=37 && currentKey!=39) return;"                                                                                                                                                                                                                                                                                                                                                                                                                
## [1776] "if(currenttab==0 && currentKey==37) return;"                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1777] "if((currenttab+1)==4 && currentKey==39) return;"                                                                                                                                                                                                                                                                                                                                                                                                             
## [1778] "var obj=divOs.getParentNodeById(this,'Dyn_',1);"                                                                                                                                                                                                                                                                                                                                                                                                             
## [1779] "var TagLen = 4;"                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1780] "var p_nbr=obj.id;"                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1781] "for (var i=0;i<TagLen;i++){"                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1782] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+i+'_'+p_nbr).attr('tabIndex',-1);"                                                                                                                                                                                                                                                                                                                                                                          
## [1783] "}"                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1784] "if(currentKey==37){"                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1785] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+(currenttab-1)+'_'+p_nbr).attr('tabIndex',0);"                                                                                                                                                                                                                                                                                                                                                              
## [1786] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+(currenttab-1)+'_'+p_nbr).focus();"                                                                                                                                                                                                                                                                                                                                                                         
## [1787] "}"                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1788] "else if(currentKey==39){"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1789] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+(currenttab+1)+'_'+p_nbr).attr('tabIndex',0);"                                                                                                                                                                                                                                                                                                                                                              
## [1790] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+(currenttab+1)+'_'+p_nbr).focus();"                                                                                                                                                                                                                                                                                                                                                                         
## [1791] "}"                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1792] "\" id=\"sm_a626b00948d123188cbd4694bb08d9760_1\"  onfocus=\"this.onclick()\" onkeypress=\"var event = arguments[0]||window.event;var currentKey = event.charCode||event.keyCode;if(currentKey==13) this.onclick();\" onclick=\""                                                                                                                                                                                                                             
## [1793] "   $('#sm_href_a626b00948d123188cbd4694bb08d9760_1').css('display','');"                                                                                                                                                                                                                                                                                                                                                                                     
## [1794] "   var obj=divOs.getParentNodeById(this,'Dyn_',1);"                                                                                                                                                                                                                                                                                                                                                                                                          
## [1795] "   var TagLen = 4;"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1796] "   var p_nbr=obj.id;"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1797] "   for (var i=0;i<TagLen;i++){"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1798] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+i+'_'+p_nbr).removeClass();"                                                                                                                                                                                                                                                                                                                                                                                
## [1799] "      $('#sm_div_a626b00948d123188cbd4694bb08d9760_'+i+'_'+p_nbr).removeClass().addClass('hidethis');"                                                                                                                                                                                                                                                                                                                                                       
## [1800] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+i+'_'+p_nbr).attr('tabIndex',-1);"                                                                                                                                                                                                                                                                                                                                                                          
## [1801] "   }"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1802] "   $('#sm_a626b00948d123188cbd4694bb08d9760_1_'+p_nbr).removeClass().addClass('active');"                                                                                                                                                                                                                                                                                                                                                                    
## [1803] "   $('#sm_div_a626b00948d123188cbd4694bb08d9760_1_'+p_nbr).removeClass().addClass('showthis');"                                                                                                                                                                                                                                                                                                                                                              
## [1804] "   $('#sm_a626b00948d123188cbd4694bb08d9760_1_'+p_nbr).attr('tabIndex',0);"                                                                                                                                                                                                                                                                                                                                                                                  
## [1805] "   var obj =$('#sm_div_a626b00948d123188cbd4694bb08d9760_1_'+p_nbr);"                                                                                                                                                                                                                                                                                                                                                                                        
## [1806] "   if (obj.attr('static')=='off'){"                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1807] "      var id='sm_div_a626b00948d123188cbd4694bb08d9760_1_'+p_nbr;"                                                                                                                                                                                                                                                                                                                                                                                           
## [1808] "      obj.attr('static','on');"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1809] "      url = $('#hd_a626b00948d123188cbd4694bb08d9760_1').val();"                                                                                                                                                                                                                                                                                                                                                                                             
## [1810] "      divOs.openSajaxUrl(id,url);"                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1811] "};"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1812] "var obj=divOs.getParentNodeById(this,'a626b00948d123188cbd4694bb08d9760_Div',1);"                                                                                                                                                                                                                                                                                                                                                                            
## [1813] "   obj=divOs.childNode(obj,1);"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1814] "   obj=divOs.childNode(obj,0);"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1815] "   obj=divOs.childNode(obj,0);"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1816] "   obj=divOs.childNode(obj,0);"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1817] "obj.style.height='';"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1818] "setTimeout(resizeTrigger,1500);"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1819] "\"><div><div>活動訊息</div></div></a></li>"                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1820] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1821] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1822] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1823] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1824] "      <li><img class=\"img_loading\" alt=\"\" src=\"http://im.cgu.edu.tw/images/clear.gif\" onload=\"var obj=divOs.getParentNodeById(this,'Dyn_',1);if(obj!=null){nextSibling.id=nextSibling.id+'_'+obj.id;};\"/><a tabindex=\"-1\" href=\"javascript:void(0)\" onmouseup=\"\" onkeyup=\""                                                                                                                                                                   
## [1825] "var currenttab=2;"                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1826] "var event = arguments[0]||window.event;"                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1827] "var currentKey = event.charCode||event.keyCode;"                                                                                                                                                                                                                                                                                                                                                                                                             
## [1828] "if(currentKey!=37 && currentKey!=39) return;"                                                                                                                                                                                                                                                                                                                                                                                                                
## [1829] "if(currenttab==0 && currentKey==37) return;"                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1830] "if((currenttab+1)==4 && currentKey==39) return;"                                                                                                                                                                                                                                                                                                                                                                                                             
## [1831] "var obj=divOs.getParentNodeById(this,'Dyn_',1);"                                                                                                                                                                                                                                                                                                                                                                                                             
## [1832] "var TagLen = 4;"                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1833] "var p_nbr=obj.id;"                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1834] "for (var i=0;i<TagLen;i++){"                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1835] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+i+'_'+p_nbr).attr('tabIndex',-1);"                                                                                                                                                                                                                                                                                                                                                                          
## [1836] "}"                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1837] "if(currentKey==37){"                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1838] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+(currenttab-1)+'_'+p_nbr).attr('tabIndex',0);"                                                                                                                                                                                                                                                                                                                                                              
## [1839] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+(currenttab-1)+'_'+p_nbr).focus();"                                                                                                                                                                                                                                                                                                                                                                         
## [1840] "}"                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1841] "else if(currentKey==39){"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1842] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+(currenttab+1)+'_'+p_nbr).attr('tabIndex',0);"                                                                                                                                                                                                                                                                                                                                                              
## [1843] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+(currenttab+1)+'_'+p_nbr).focus();"                                                                                                                                                                                                                                                                                                                                                                         
## [1844] "}"                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1845] "\" id=\"sm_a626b00948d123188cbd4694bb08d9760_2\"  onfocus=\"this.onclick()\" onkeypress=\"var event = arguments[0]||window.event;var currentKey = event.charCode||event.keyCode;if(currentKey==13) this.onclick();\" onclick=\""                                                                                                                                                                                                                             
## [1846] "   $('#sm_href_a626b00948d123188cbd4694bb08d9760_2').css('display','');"                                                                                                                                                                                                                                                                                                                                                                                     
## [1847] "   var obj=divOs.getParentNodeById(this,'Dyn_',1);"                                                                                                                                                                                                                                                                                                                                                                                                          
## [1848] "   var TagLen = 4;"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1849] "   var p_nbr=obj.id;"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1850] "   for (var i=0;i<TagLen;i++){"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1851] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+i+'_'+p_nbr).removeClass();"                                                                                                                                                                                                                                                                                                                                                                                
## [1852] "      $('#sm_div_a626b00948d123188cbd4694bb08d9760_'+i+'_'+p_nbr).removeClass().addClass('hidethis');"                                                                                                                                                                                                                                                                                                                                                       
## [1853] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+i+'_'+p_nbr).attr('tabIndex',-1);"                                                                                                                                                                                                                                                                                                                                                                          
## [1854] "   }"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1855] "   $('#sm_a626b00948d123188cbd4694bb08d9760_2_'+p_nbr).removeClass().addClass('active');"                                                                                                                                                                                                                                                                                                                                                                    
## [1856] "   $('#sm_div_a626b00948d123188cbd4694bb08d9760_2_'+p_nbr).removeClass().addClass('showthis');"                                                                                                                                                                                                                                                                                                                                                              
## [1857] "   $('#sm_a626b00948d123188cbd4694bb08d9760_2_'+p_nbr).attr('tabIndex',0);"                                                                                                                                                                                                                                                                                                                                                                                  
## [1858] "   var obj =$('#sm_div_a626b00948d123188cbd4694bb08d9760_2_'+p_nbr);"                                                                                                                                                                                                                                                                                                                                                                                        
## [1859] "   if (obj.attr('static')=='off'){"                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1860] "      var id='sm_div_a626b00948d123188cbd4694bb08d9760_2_'+p_nbr;"                                                                                                                                                                                                                                                                                                                                                                                           
## [1861] "      obj.attr('static','on');"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1862] "      url = $('#hd_a626b00948d123188cbd4694bb08d9760_2').val();"                                                                                                                                                                                                                                                                                                                                                                                             
## [1863] "      divOs.openSajaxUrl(id,url);"                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1864] "};"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1865] "var obj=divOs.getParentNodeById(this,'a626b00948d123188cbd4694bb08d9760_Div',1);"                                                                                                                                                                                                                                                                                                                                                                            
## [1866] "   obj=divOs.childNode(obj,1);"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1867] "   obj=divOs.childNode(obj,0);"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1868] "   obj=divOs.childNode(obj,0);"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1869] "   obj=divOs.childNode(obj,0);"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1870] "obj.style.height='';"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1871] "setTimeout(resizeTrigger,1500);"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1872] "\"><div><div>招生資訊</div></div></a></li>"                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1873] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1874] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1875] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1876] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1877] "      <li><img class=\"img_loading\" alt=\"\" src=\"http://im.cgu.edu.tw/images/clear.gif\" onload=\"var obj=divOs.getParentNodeById(this,'Dyn_',1);if(obj!=null){nextSibling.id=nextSibling.id+'_'+obj.id;};\"/><a tabindex=\"-1\" href=\"javascript:void(0)\" onmouseup=\"\" onkeyup=\""                                                                                                                                                                   
## [1878] "var currenttab=3;"                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1879] "var event = arguments[0]||window.event;"                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1880] "var currentKey = event.charCode||event.keyCode;"                                                                                                                                                                                                                                                                                                                                                                                                             
## [1881] "if(currentKey!=37 && currentKey!=39) return;"                                                                                                                                                                                                                                                                                                                                                                                                                
## [1882] "if(currenttab==0 && currentKey==37) return;"                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1883] "if((currenttab+1)==4 && currentKey==39) return;"                                                                                                                                                                                                                                                                                                                                                                                                             
## [1884] "var obj=divOs.getParentNodeById(this,'Dyn_',1);"                                                                                                                                                                                                                                                                                                                                                                                                             
## [1885] "var TagLen = 4;"                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1886] "var p_nbr=obj.id;"                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1887] "for (var i=0;i<TagLen;i++){"                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [1888] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+i+'_'+p_nbr).attr('tabIndex',-1);"                                                                                                                                                                                                                                                                                                                                                                          
## [1889] "}"                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1890] "if(currentKey==37){"                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [1891] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+(currenttab-1)+'_'+p_nbr).attr('tabIndex',0);"                                                                                                                                                                                                                                                                                                                                                              
## [1892] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+(currenttab-1)+'_'+p_nbr).focus();"                                                                                                                                                                                                                                                                                                                                                                         
## [1893] "}"                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1894] "else if(currentKey==39){"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1895] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+(currenttab+1)+'_'+p_nbr).attr('tabIndex',0);"                                                                                                                                                                                                                                                                                                                                                              
## [1896] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+(currenttab+1)+'_'+p_nbr).focus();"                                                                                                                                                                                                                                                                                                                                                                         
## [1897] "}"                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1898] "\" id=\"sm_a626b00948d123188cbd4694bb08d9760_3\"  onfocus=\"this.onclick()\" onkeypress=\"var event = arguments[0]||window.event;var currentKey = event.charCode||event.keyCode;if(currentKey==13) this.onclick();\" onclick=\""                                                                                                                                                                                                                             
## [1899] "   $('#sm_href_a626b00948d123188cbd4694bb08d9760_3').css('display','');"                                                                                                                                                                                                                                                                                                                                                                                     
## [1900] "   var obj=divOs.getParentNodeById(this,'Dyn_',1);"                                                                                                                                                                                                                                                                                                                                                                                                          
## [1901] "   var TagLen = 4;"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1902] "   var p_nbr=obj.id;"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1903] "   for (var i=0;i<TagLen;i++){"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1904] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+i+'_'+p_nbr).removeClass();"                                                                                                                                                                                                                                                                                                                                                                                
## [1905] "      $('#sm_div_a626b00948d123188cbd4694bb08d9760_'+i+'_'+p_nbr).removeClass().addClass('hidethis');"                                                                                                                                                                                                                                                                                                                                                       
## [1906] "      $('#sm_a626b00948d123188cbd4694bb08d9760_'+i+'_'+p_nbr).attr('tabIndex',-1);"                                                                                                                                                                                                                                                                                                                                                                          
## [1907] "   }"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1908] "   $('#sm_a626b00948d123188cbd4694bb08d9760_3_'+p_nbr).removeClass().addClass('active');"                                                                                                                                                                                                                                                                                                                                                                    
## [1909] "   $('#sm_div_a626b00948d123188cbd4694bb08d9760_3_'+p_nbr).removeClass().addClass('showthis');"                                                                                                                                                                                                                                                                                                                                                              
## [1910] "   $('#sm_a626b00948d123188cbd4694bb08d9760_3_'+p_nbr).attr('tabIndex',0);"                                                                                                                                                                                                                                                                                                                                                                                  
## [1911] "   var obj =$('#sm_div_a626b00948d123188cbd4694bb08d9760_3_'+p_nbr);"                                                                                                                                                                                                                                                                                                                                                                                        
## [1912] "   if (obj.attr('static')=='off'){"                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1913] "      var id='sm_div_a626b00948d123188cbd4694bb08d9760_3_'+p_nbr;"                                                                                                                                                                                                                                                                                                                                                                                           
## [1914] "      obj.attr('static','on');"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1915] "      url = $('#hd_a626b00948d123188cbd4694bb08d9760_3').val();"                                                                                                                                                                                                                                                                                                                                                                                             
## [1916] "      divOs.openSajaxUrl(id,url);"                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1917] "};"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1918] "var obj=divOs.getParentNodeById(this,'a626b00948d123188cbd4694bb08d9760_Div',1);"                                                                                                                                                                                                                                                                                                                                                                            
## [1919] "   obj=divOs.childNode(obj,1);"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1920] "   obj=divOs.childNode(obj,0);"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1921] "   obj=divOs.childNode(obj,0);"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1922] "   obj=divOs.childNode(obj,0);"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1923] "obj.style.height='';"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [1924] "setTimeout(resizeTrigger,1500);"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [1925] "\"><div><div>徵才資訊</div></div></a></li>"                                                                                                                                                                                                                                                                                                                                                                                                                  
## [1926] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1927] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1928] "   </ul>"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [1929] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1930] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1931] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1932] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1933] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1934] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1935] "<div class=\"md_middle\">"                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [1936] "<div class=\"mm_03\">"                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1937] "<div class=\"mm_02\">"                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1938] "<div class=\"mm_01\">"                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [1939] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1940] "<div class=\"subcontent getlink\">"                                                                                                                                                                                                                                                                                                                                                                                                                          
## [1941] "<div class=\"subcontent-inner\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1942] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1943] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1944] "<div class=\"M10251\">"                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1945] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1946] "<div id=\"sm_div_a626b00948d123188cbd4694bb08d9760_0\" static=\"on\" class=\"showthis\">"                                                                                                                                                                                                                                                                                                                                                                    
## [1947] "</div><img class=\"img_loading\" alt=\"\" src=\"http://im.cgu.edu.tw/images/clear.gif\" onload=\"var obj=divOs.getParentNodeById(this,'Dyn_',1);if(obj!=null){previousSibling.id=previousSibling.id+'_'+obj.id;};"                                                                                                                                                                                                                                           
## [1948] "divOs.openSajaxUrl(previousSibling.id,'/bin/showmodule.php?O=1055&F=/55/1055/modules/rcg_mstr/23/rcg_mstr-23.htm.zh-tw&Mo=10251&Type=rcg_mstr&Nbr=23&Seq=23&Cg=cmb');;\"/>"                                                                                                                                                                                                                                                                                  
## [1949] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1950] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1951] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1952] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1953] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1954] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1955] "<a id=\"sm_href_a626b00948d123188cbd4694bb08d9760_0\" href=\"\" onkeyup=\""                                                                                                                                                                                                                                                                                                                                                                                  
## [1956] "var obj=divOs.getParentNodeById(this,'Dyn_',1);"                                                                                                                                                                                                                                                                                                                                                                                                             
## [1957] "var p_nbr=obj.id;"                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1958] "$(this).css('display','none');"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1959] "$('#sm_a626b00948d123188cbd4694bb08d9760_0_'+p_nbr).attr('tabIndex',-1);"                                                                                                                                                                                                                                                                                                                                                                                    
## [1960] "$('#sm_a626b00948d123188cbd4694bb08d9760_0_'+p_nbr).attr('tabIndex',0);"                                                                                                                                                                                                                                                                                                                                                                                     
## [1961] "$('#sm_a626b00948d123188cbd4694bb08d9760_1_'+p_nbr).focus();"                                                                                                                                                                                                                                                                                                                                                                                                
## [1962] "\"></a>"                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1963] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1964] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1965] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1966] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1967] "<div class=\"M11247\">"                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1968] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1969] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1970] "<div id=\"sm_div_a626b00948d123188cbd4694bb08d9760_1\" static=\"off\" class=\"hidethis\">"                                                                                                                                                                                                                                                                                                                                                                   
## [1971] "數據載入中..."                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1972] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1973] "<input type=\"hidden\" name=\"hd_a626b00948d123188cbd4694bb08d9760_1\" id=\"hd_a626b00948d123188cbd4694bb08d9760_1\" value=\"/bin/showmodule.php?O=1055&F=/55/1055/modules/rcg_mstr/3/rcg_mstr-294.htm.zh-tw&Mo=11247&Type=rcg_mstr&Nbr=294&Seq=294&Cg=cmb\">"                                                                                                                                                                                               
## [1974] "</div><img class=\"img_loading\" alt=\"\" src=\"http://im.cgu.edu.tw/images/clear.gif\" onload=\"var obj=divOs.getParentNodeById(this,'Dyn_',1);if(obj!=null){previousSibling.id=previousSibling.id+'_'+obj.id;};\"/>"                                                                                                                                                                                                                                       
## [1975] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1976] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1977] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1978] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1979] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1980] "<a id=\"sm_href_a626b00948d123188cbd4694bb08d9760_1\" href=\"\" onkeyup=\""                                                                                                                                                                                                                                                                                                                                                                                  
## [1981] "var obj=divOs.getParentNodeById(this,'Dyn_',1);"                                                                                                                                                                                                                                                                                                                                                                                                             
## [1982] "var p_nbr=obj.id;"                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [1983] "$(this).css('display','none');"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [1984] "$('#sm_a626b00948d123188cbd4694bb08d9760_1_'+p_nbr).attr('tabIndex',-1);"                                                                                                                                                                                                                                                                                                                                                                                    
## [1985] "$('#sm_a626b00948d123188cbd4694bb08d9760_0_'+p_nbr).attr('tabIndex',0);"                                                                                                                                                                                                                                                                                                                                                                                     
## [1986] "$('#sm_a626b00948d123188cbd4694bb08d9760_2_'+p_nbr).focus();"                                                                                                                                                                                                                                                                                                                                                                                                
## [1987] "\"></a>"                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [1988] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1989] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1990] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1991] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1992] "<div class=\"M11237\">"                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [1993] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1994] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1995] "<div id=\"sm_div_a626b00948d123188cbd4694bb08d9760_2\" static=\"off\" class=\"hidethis\">"                                                                                                                                                                                                                                                                                                                                                                   
## [1996] "數據載入中..."                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [1997] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [1998] "<input type=\"hidden\" name=\"hd_a626b00948d123188cbd4694bb08d9760_2\" id=\"hd_a626b00948d123188cbd4694bb08d9760_2\" value=\"/bin/showmodule.php?O=1055&F=/55/1055/modules/rcg_mstr/93/rcg_mstr-287.htm.zh-tw&Mo=11237&Type=rcg_mstr&Nbr=287&Seq=287&Cg=cmb\">"                                                                                                                                                                                              
## [1999] "</div><img class=\"img_loading\" alt=\"\" src=\"http://im.cgu.edu.tw/images/clear.gif\" onload=\"var obj=divOs.getParentNodeById(this,'Dyn_',1);if(obj!=null){previousSibling.id=previousSibling.id+'_'+obj.id;};\"/>"                                                                                                                                                                                                                                       
## [2000] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2001] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2002] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2003] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2004] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2005] "<a id=\"sm_href_a626b00948d123188cbd4694bb08d9760_2\" href=\"\" onkeyup=\""                                                                                                                                                                                                                                                                                                                                                                                  
## [2006] "var obj=divOs.getParentNodeById(this,'Dyn_',1);"                                                                                                                                                                                                                                                                                                                                                                                                             
## [2007] "var p_nbr=obj.id;"                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2008] "$(this).css('display','none');"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2009] "$('#sm_a626b00948d123188cbd4694bb08d9760_2_'+p_nbr).attr('tabIndex',-1);"                                                                                                                                                                                                                                                                                                                                                                                    
## [2010] "$('#sm_a626b00948d123188cbd4694bb08d9760_0_'+p_nbr).attr('tabIndex',0);"                                                                                                                                                                                                                                                                                                                                                                                     
## [2011] "$('#sm_a626b00948d123188cbd4694bb08d9760_3_'+p_nbr).focus();"                                                                                                                                                                                                                                                                                                                                                                                                
## [2012] "\"></a>"                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2013] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2014] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2015] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2016] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2017] "<div class=\"M11236\">"                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2018] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2019] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2020] "<div id=\"sm_div_a626b00948d123188cbd4694bb08d9760_3\" static=\"off\" class=\"hidethis\">"                                                                                                                                                                                                                                                                                                                                                                   
## [2021] "數據載入中..."                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2022] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2023] "<input type=\"hidden\" name=\"hd_a626b00948d123188cbd4694bb08d9760_3\" id=\"hd_a626b00948d123188cbd4694bb08d9760_3\" value=\"/bin/showmodule.php?O=1055&F=/55/1055/modules/rcg_mstr/92/rcg_mstr-286.htm.zh-tw&Mo=11236&Type=rcg_mstr&Nbr=286&Seq=286&Cg=cmb\">"                                                                                                                                                                                              
## [2024] "</div><img class=\"img_loading\" alt=\"\" src=\"http://im.cgu.edu.tw/images/clear.gif\" onload=\"var obj=divOs.getParentNodeById(this,'Dyn_',1);if(obj!=null){previousSibling.id=previousSibling.id+'_'+obj.id;};\"/>"                                                                                                                                                                                                                                       
## [2025] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2026] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2027] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2028] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2029] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2030] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2031] "<a id=\"sm_href_a626b00948d123188cbd4694bb08d9760_3\" href=\"\" onblur=\""                                                                                                                                                                                                                                                                                                                                                                                   
## [2032] "var obj=divOs.getParentNodeById(this,'Dyn_',1);"                                                                                                                                                                                                                                                                                                                                                                                                             
## [2033] "var p_nbr=obj.id;"                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2034] "$(this).css('display','none');"                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2035] "$('#sm_a626b00948d123188cbd4694bb08d9760_3_'+p_nbr).attr('tabIndex',-1);"                                                                                                                                                                                                                                                                                                                                                                                    
## [2036] "$('#sm_a626b00948d123188cbd4694bb08d9760_0_'+p_nbr).attr('tabIndex',0);"                                                                                                                                                                                                                                                                                                                                                                                     
## [2037] "\"></a>"                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2038] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2039] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2040] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2041] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2042] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2043] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2044] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2045] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2046] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2047] "<div class=\"md_bottom\"><div class=\"mb_03\"><div class=\"mb_02\"><div class=\"mb_01\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" alt=\"\"/></div></div></div></div>"                                                                                                                                                                                                                                                                               
## [2048] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2049] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2050] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2051] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2052] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2053] "\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2054] "\t\t\t\t\t<div class=\"wrap\"></div>"                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2055] "\t\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2056] "\t\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2057] "\t\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2058] "\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2059] "\t\t\t\t<div class=\"col_bottom\">"                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2060] "\t\t\t\t\t<div class=\"cb_03\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2061] "\t\t\t\t\t<div class=\"cb_02\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2062] "\t\t\t\t\t<div class=\"cb_01\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2063] "\t\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2064] "\t\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2065] "\t\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2066] "\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2067] "\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2068] "\t\t\t</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2069] "\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2070] "\t \t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2071] "\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2072] "\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2073] "\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2074] "\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2075] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2076] "\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2077] "\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2078] "\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2079] "\t\t\t<td class=\"col_03\" width=\"25%\" valign=\"top\">"                                                                                                                                                                                                                                                                                                                                                                                                    
## [2080] "\t\t\t<div class=\"col_03\">"                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2081] "\t\t\t\t<!-- Column Top Begin -->"                                                                                                                                                                                                                                                                                                                                                                                                                           
## [2082] "\t\t\t\t<div class=\"col_top\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2083] "\t\t\t\t\t<div class=\"ct_03\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2084] "\t\t\t\t\t<div class=\"ct_02\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2085] "\t\t\t\t\t<div class=\"ct_01\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2086] "\t\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2087] "\t\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2088] "\t\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2089] "\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [2090] "\t\t\t\t<!-- Column Top End -->"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2091] "\t\t\t\t<!-- Column Middle Begin -->"                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2092] "\t\t\t\t<div class=\"col_middle\">"                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2093] "\t\t\t\t\t<div class=\"cm_03\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2094] "\t\t\t\t\t<div class=\"cm_02\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2095] "\t\t\t\t\t<div class=\"cm_01\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [2096] "\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2097] "\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2098] "\t\t\t\t\t   "                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2099] "\t\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2100] "\t\t\t\t\t\t<div id=\"Dyn_3_1\" class=\"M13290 M13290_394  \">"                                                                                                                                                                                                                                                                                                                                                                                              
## [2101] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2102] "<div class=\"module module-link md_style2 self\">"                                                                                                                                                                                                                                                                                                                                                                                                           
## [2103] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2104] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2105] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2106] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2107] "<div class=\"md_top hide_title \"><div class=\"mt_03\"><div class=\"mt_02\"><div class=\"mt_01\">"                                                                                                                                                                                                                                                                                                                                                           
## [2108] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2109] "</div></div></div></div>"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2110] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2111] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2112] "\t<div class=\"md_middle\">"                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2113] "\t<div class=\"mm_03\"><div class=\"mm_02\"><div class=\"mm_01\">"                                                                                                                                                                                                                                                                                                                                                                                           
## [2114] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2115] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2116] "\t\t<table summary=\"list\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" class=\"baseTB list_TIDY\">"                                                                                                                                                                                                                                                                                                                                     
## [2117] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2118] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2119] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2120] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2121] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2122] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2123] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2124] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2125] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2126] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2127] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2128] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2129] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2130] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2131] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2132] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2133] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2134] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2135] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2136] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2137] "<tr class=\"row_1\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2138] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2139] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2140] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2141] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2142] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2143] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2144] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2145] "<a class=\"item-image\" href=\"http://bigdata.cgu.edu.tw/bin/home.php\" target=\"_blank\"  ><img src=\"/ezfiles/55/1055/pictures/linkdet_2591_1319012_40152.jpg\"  width=\"218\" height=\"40\"   alt=\"首頁大數據資料科學與產業應用學程\" title=\"首頁大數據資料科學與產業應用學程\" ></a>"                                                                                                                                                                  
## [2146] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2147] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2148] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2149] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2150] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2151] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2152] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2153] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2154] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2155] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2156] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2157] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2158] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2159] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2160] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2161] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2162] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2163] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2164] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2165] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2166] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2167] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2168] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2169] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2170] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2171] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2172] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2173] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2174] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2175] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2176] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2177] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2178] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2179] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2180] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2181] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2182] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2183] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2184] "<tr class=\"row_2\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2185] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2186] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2187] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2188] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2189] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2190] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2191] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2192] "<a class=\"item-image\" href=\"http://isma.cgu.edu.tw/bin/home.php\" target=\"_blank\"  ><img src=\"/ezfiles/55/1055/pictures/linkdet_2590_3258620_40094.jpg\"  width=\"218\" height=\"40\"   alt=\"首頁資訊與醫療安全學程\" title=\"首頁資訊與醫療安全學程\" ></a>"                                                                                                                                                                                         
## [2193] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2194] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2195] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2196] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2197] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2198] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2199] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2200] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2201] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2202] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2203] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2204] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2205] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2206] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2207] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2208] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2209] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2210] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2211] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2212] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2213] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2214] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2215] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2216] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2217] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2218] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2219] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2220] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2221] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2222] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2223] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2224] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2225] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2226] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2227] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2228] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2229] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2230] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2231] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2232] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2233] "<tr class=\"row_1\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2234] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2235] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2236] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2237] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2238] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2239] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2240] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2241] "<a class=\"item-image\" href=\"http://rfidap.cgu.edu.tw/bin/home.php\" target=\"_blank\"  ><img src=\"/ezfiles/55/1055/pictures/linkdet_2589_7237723_40035.jpg\"  width=\"218\" height=\"40\"   alt=\"首頁RFID物流與供應連學程\" title=\"首頁RFID物流與供應連學程\" ></a>"                                                                                                                                                                                   
## [2242] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2243] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2244] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2245] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2246] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2247] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2248] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2249] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2250] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2251] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2252] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2253] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2254] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2255] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2256] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2257] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2258] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2259] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2260] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2261] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2262] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2263] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2264] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2265] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2266] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2267] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2268] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2269] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2270] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2271] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2272] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2273] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2274] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2275] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2276] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2277] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2278] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2279] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2280] "<tr class=\"row_2\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2281] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2282] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2283] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2284] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2285] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2286] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2287] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2288] "<a class=\"item-image\" href=\"/files/11-1055-6906.php?Lang=zh-tw\" target=\"_blank\"  ><img src=\"/ezfiles/55/1055/pictures/linkdet_2543_3254980_38904.jpg\"  width=\"218\" height=\"40\"   alt=\"新聞焦點\" title=\"新聞焦點\" ></a>"                                                                                                                                                                                                                      
## [2289] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2290] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2291] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2292] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2293] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2294] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2295] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2296] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2297] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2298] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2299] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2300] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2301] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2302] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2303] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2304] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2305] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2306] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2307] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2308] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2309] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2310] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2311] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2312] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2313] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2314] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2315] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2316] "</table>"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2317] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2318] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2319] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2320] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2321] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2322] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2323] "\t</div></div></div>"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2324] "\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2325] "\t<div class=\"md_bottom\"><div class=\"mb_03\"><div class=\"mb_02\"><div class=\"mb_01\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" alt=\"\"/></div></div></div></div>"                                                                                                                                                                                                                                                                             
## [2326] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2327] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2328] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2329] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2330] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2331] "\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2332] "\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2333] "\t\t\t\t\t   "                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2334] "\t\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2335] "\t\t\t\t\t\t<div id=\"Dyn_3_2\" class=\"M10345 M10345_67  \">"                                                                                                                                                                                                                                                                                                                                                                                               
## [2336] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2337] "<div class=\"module module-link md_style1 self\">"                                                                                                                                                                                                                                                                                                                                                                                                           
## [2338] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2339] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2340] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2341] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2342] "<div class=\"md_top show_title \"><div class=\"mt_03\"><div class=\"mt_02\"><div class=\"mt_01\">"                                                                                                                                                                                                                                                                                                                                                           
## [2343] "\t<div class=\"h3\">快速連結<div class=\"readmore headmore\"><a href=\"http://im.cgu.edu.tw/files/50-1055-67-1.php?Lang=zh-tw\" title=\"More\" >More</a></div></div>"                                                                                                                                                                                                                                                                                        
## [2344] "</div></div></div></div>"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2345] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2346] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2347] "\t<div class=\"md_middle\">"                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2348] "\t<div class=\"mm_03\"><div class=\"mm_02\"><div class=\"mm_01\">"                                                                                                                                                                                                                                                                                                                                                                                           
## [2349] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2350] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2351] "\t\t<table summary=\"list\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" class=\"baseTB list_TIDY\">"                                                                                                                                                                                                                                                                                                                                     
## [2352] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2353] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2354] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2355] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2356] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2357] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2358] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2359] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2360] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2361] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2362] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2363] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2364] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2365] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2366] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2367] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2368] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2369] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2370] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2371] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2372] "<tr class=\"row_1\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2373] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2374] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2375] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2376] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2377] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2378] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2379] "<div class=\"h5\">"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2380] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2381] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2382] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2383] "<span class=\"ptname \"><a href=\"http://www.cgu.edu.tw/\" target=\"_blank\"  title=\"長庚大學首頁\"  >長庚大學首頁</a></span>"                                                                                                                                                                                                                                                                                                                              
## [2384] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2385] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2386] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2387] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2388] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2389] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2390] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2391] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2392] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2393] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2394] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2395] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2396] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2397] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2398] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2399] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2400] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2401] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2402] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2403] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2404] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2405] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2406] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2407] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2408] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2409] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2410] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2411] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2412] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2413] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2414] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2415] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2416] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2417] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2418] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2419] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2420] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2421] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2422] "<tr class=\"row_2\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2423] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2424] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2425] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2426] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2427] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2428] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2429] "<div class=\"h5\">"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2430] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2431] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2432] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2433] "<span class=\"ptname \"><a href=\"http://www.is.cgu.edu.tw/portal/DesktopDefault.aspx\" target=\"_blank\"  title=\"校務資訊系統\"  >校務資訊系統</a></span>"                                                                                                                                                                                                                                                                                                 
## [2434] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2435] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2436] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2437] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2438] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2439] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2440] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2441] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2442] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2443] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2444] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2445] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2446] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2447] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2448] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2449] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2450] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2451] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2452] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2453] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2454] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2455] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2456] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2457] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2458] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2459] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2460] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2461] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2462] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2463] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2464] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2465] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2466] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2467] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2468] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2469] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2470] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2471] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2472] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2473] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2474] "<tr class=\"row_1\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2475] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2476] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2477] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2478] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2479] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2480] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2481] "<div class=\"h5\">"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2482] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2483] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2484] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2485] "<span class=\"ptname \"><a href=\"http://im.cgu.edu.tw/files/13-1055-12708.php\" target=\"_blank\"  title=\"國內資管系所\"  >國內資管系所</a></span>"                                                                                                                                                                                                                                                                                                        
## [2486] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2487] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2488] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2489] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2490] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2491] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2492] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2493] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2494] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2495] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2496] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2497] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2498] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2499] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2500] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2501] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2502] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2503] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2504] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2505] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2506] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2507] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2508] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2509] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2510] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2511] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2512] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2513] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2514] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2515] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2516] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2517] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2518] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2519] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2520] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2521] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2522] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2523] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2524] "<tr class=\"row_2\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2525] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2526] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2527] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2528] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2529] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2530] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2531] "<div class=\"h5\">"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2532] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2533] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2534] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2535] "<span class=\"ptname \"><a href=\"http://ndltd.ncl.edu.tw/\" target=\"_blank\"  title=\"碩博士論文網\"  >碩博士論文網</a></span>"                                                                                                                                                                                                                                                                                                                            
## [2536] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2537] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2538] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2539] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2540] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2541] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2542] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2543] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2544] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2545] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2546] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2547] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2548] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2549] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2550] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2551] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2552] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2553] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2554] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2555] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2556] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2557] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2558] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2559] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2560] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2561] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2562] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2563] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2564] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2565] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2566] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2567] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2568] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2569] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2570] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2571] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2572] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2573] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2574] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2575] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2576] "<tr class=\"row_1\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2577] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2578] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2579] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2580] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2581] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2582] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2583] "<div class=\"h5\">"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2584] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2585] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2586] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2587] "<span class=\"ptname \"><a href=\"http://www.csim.cgu.edu.tw/LoginIndex.aspx\" target=\"_blank\"  title=\"資管系內部行政系統\"  >資管系內部行政系統</a></span>"                                                                                                                                                                                                                                                                                              
## [2588] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2589] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2590] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2591] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2592] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2593] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2594] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2595] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2596] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2597] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2598] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2599] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2600] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2601] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2602] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2603] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2604] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2605] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2606] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2607] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2608] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2609] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2610] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2611] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2612] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2613] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2614] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2615] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2616] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2617] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2618] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2619] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2620] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2621] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2622] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2623] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2624] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2625] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2626] "<tr class=\"row_2\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2627] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2628] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2629] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2630] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2631] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2632] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2633] "<div class=\"h5\">"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2634] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2635] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2636] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2637] "<span class=\"ptname \"><a href=\"http://im.cgu.edu.tw/files/13-1055-12668.php?Lang\" target=\"_blank\"  title=\"資管系分機表\"  >資管系分機表</a></span>"                                                                                                                                                                                                                                                                                                   
## [2638] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2639] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2640] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2641] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2642] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2643] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2644] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2645] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2646] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2647] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2648] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2649] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2650] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2651] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2652] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2653] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2654] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2655] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2656] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2657] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2658] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2659] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2660] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2661] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2662] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2663] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2664] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2665] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2666] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2667] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2668] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2669] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2670] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2671] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2672] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2673] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2674] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2675] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2676] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2677] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2678] "<tr class=\"row_1\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2679] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2680] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2681] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2682] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2683] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2684] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2685] "<div class=\"h5\">"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2686] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2687] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2688] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2689] "<span class=\"ptname \"><a href=\"https://sites.google.com/site/hereiscguim/home\" target=\"_blank\"  title=\"資管系學會\"  >資管系學會</a></span>"                                                                                                                                                                                                                                                                                                          
## [2690] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2691] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2692] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2693] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2694] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2695] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2696] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2697] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2698] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2699] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2700] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2701] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2702] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2703] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2704] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2705] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2706] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2707] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2708] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2709] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2710] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2711] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2712] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2713] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2714] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2715] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2716] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2717] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2718] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2719] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2720] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2721] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2722] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2723] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2724] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2725] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2726] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2727] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2728] "<tr class=\"row_2\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2729] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2730] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2731] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2732] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2733] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2734] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2735] "<div class=\"h5\">"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2736] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2737] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2738] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2739] "<span class=\"ptname \"><a href=\"http://im.cgu.edu.tw/files/13-1055-37923.php\" target=\"_blank\"  title=\"TA課後輔導值班表\"  >TA課後輔導值班表</a></span>"                                                                                                                                                                                                                                                                                                
## [2740] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2741] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2742] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2743] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2744] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2745] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2746] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2747] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2748] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2749] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2750] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2751] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2752] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2753] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2754] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2755] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2756] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2757] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2758] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2759] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2760] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2761] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2762] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2763] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2764] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2765] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2766] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2767] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2768] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2769] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2770] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2771] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2772] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2773] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2774] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2775] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2776] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2777] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2778] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2779] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2780] "<tr class=\"row_1\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2781] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2782] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2783] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2784] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2785] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2786] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2787] "<div class=\"h5\">"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2788] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2789] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2790] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2791] "<span class=\"ptname \"><a href=\"http://stmail.cgu.edu.tw/\" target=\"_blank\"  title=\"學生webmail\"  >學生webmail</a></span>"                                                                                                                                                                                                                                                                                                                             
## [2792] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2793] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2794] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2795] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2796] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2797] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2798] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2799] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2800] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2801] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2802] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2803] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2804] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2805] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2806] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2807] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2808] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2809] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2810] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2811] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2812] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2813] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2814] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2815] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2816] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2817] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2818] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2819] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2820] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2821] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2822] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2823] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2824] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2825] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2826] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2827] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2828] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2829] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2830] "<tr class=\"row_2\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2831] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2832] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2833] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2834] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2835] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2836] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2837] "<div class=\"h5\">"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2838] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2839] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2840] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2841] "<span class=\"ptname \"><a href=\"http://mx1.cgu.edu.tw/index_p.html\" target=\"_blank\"  title=\"教職員webmail\"  >教職員webmail</a></span>"                                                                                                                                                                                                                                                                                                                
## [2842] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2843] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2844] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2845] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2846] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2847] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2848] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2849] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2850] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2851] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2852] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2853] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2854] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2855] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2856] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2857] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2858] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2859] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2860] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2861] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2862] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2863] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2864] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2865] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2866] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2867] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2868] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2869] "</table>"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2870] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2871] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2872] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2873] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2874] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2875] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2876] "\t\t<div class=\"readmore\"><a href=\"http://im.cgu.edu.tw/files/50-1055-67-1.php?Lang=zh-tw\" title=\"More\" > More</a></div>"                                                                                                                                                                                                                                                                                                                              
## [2877] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2878] "\t</div></div></div>"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2879] "\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2880] "\t<div class=\"md_bottom\"><div class=\"mb_03\"><div class=\"mb_02\"><div class=\"mb_01\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" alt=\"\"/></div></div></div></div>"                                                                                                                                                                                                                                                                             
## [2881] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2882] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2883] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2884] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2885] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2886] "\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2887] "\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [2888] "\t\t\t\t\t   "                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [2889] "\t\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [2890] "\t\t\t\t\t\t<div id=\"Dyn_3_3\" class=\"M12086 M12086_267  \">"                                                                                                                                                                                                                                                                                                                                                                                              
## [2891] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2892] "<div class=\"module module-link md_style1 self\">"                                                                                                                                                                                                                                                                                                                                                                                                           
## [2893] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2894] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2895] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2896] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2897] "<div class=\"md_top show_title \"><div class=\"mt_03\"><div class=\"mt_02\"><div class=\"mt_01\">"                                                                                                                                                                                                                                                                                                                                                           
## [2898] "\t<div class=\"h3\">管理學院各單位</div>"                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2899] "</div></div></div></div>"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [2900] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2901] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2902] "\t<div class=\"md_middle\">"                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [2903] "\t<div class=\"mm_03\"><div class=\"mm_02\"><div class=\"mm_01\">"                                                                                                                                                                                                                                                                                                                                                                                           
## [2904] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2905] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2906] "\t\t<table summary=\"list\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" class=\"baseTB list_TIDY\">"                                                                                                                                                                                                                                                                                                                                     
## [2907] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2908] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2909] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2910] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2911] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2912] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2913] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2914] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2915] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2916] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2917] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2918] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2919] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2920] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2921] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2922] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2923] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2924] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2925] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2926] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2927] "<tr class=\"row_1\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2928] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2929] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2930] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2931] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2932] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2933] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2934] "<div class=\"h5\">"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2935] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2936] "<span class=\"ptname \"><a href=\"http://ibm.cgu.edu.tw/bin/home.php?Lang=zh-tw\" target=\"_blank\"  title=\"工商管理學系/研究所\" >工商管理學系/研究所</a></span>"                                                                                                                                                                                                                                                                                          
## [2937] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2938] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2939] "<div class=\"message\">"                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2940] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2941] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2942] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2943] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2944] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2945] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2946] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2947] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2948] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2949] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2950] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2951] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2952] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2953] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2954] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2955] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2956] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2957] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2958] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2959] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2960] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2961] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2962] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2963] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2964] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2965] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2966] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2967] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2968] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2969] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2970] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2971] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2972] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2973] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [2974] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2975] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2976] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [2977] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2978] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2979] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2980] "<tr class=\"row_2\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [2981] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2982] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2983] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2984] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2985] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [2986] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2987] "<div class=\"h5\">"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [2988] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2989] "<span class=\"ptname \"><a href=\"http://id.cgu.edu.tw/bin/home.php?Lang=zh-tw\" target=\"_blank\"  title=\"工業設計學系/研究所\" >工業設計學系/研究所</a></span>"                                                                                                                                                                                                                                                                                           
## [2990] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2991] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2992] "<div class=\"message\">"                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [2993] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2994] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2995] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2996] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [2997] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2998] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [2999] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3000] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3001] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3002] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3003] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3004] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3005] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3006] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3007] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3008] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3009] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3010] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3011] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3012] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3013] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3014] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3015] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3016] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3017] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3018] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3019] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3020] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3021] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3022] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3023] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3024] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [3025] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [3026] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [3027] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3028] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3029] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3030] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3031] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3032] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3033] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3034] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3035] "<tr class=\"row_1\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3036] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3037] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3038] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3039] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3040] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3041] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3042] "<div class=\"h5\">"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3043] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3044] "<span class=\"ptname \"><a href=\"http://mgt.cgu.edu.tw/bin/home.php\" target=\"_blank\"  title=\"管理學院\" >管理學院</a></span>"                                                                                                                                                                                                                                                                                                                           
## [3045] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3046] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3047] "<div class=\"message\">"                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3048] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3049] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3050] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3051] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3052] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3053] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3054] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3055] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3056] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3057] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3058] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3059] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3060] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3061] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3062] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3063] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3064] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3065] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3066] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3067] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3068] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3069] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3070] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3071] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3072] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3073] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3074] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3075] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3076] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3077] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3078] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3079] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [3080] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [3081] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [3082] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3083] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3084] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3085] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3086] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3087] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3088] "<tr class=\"row_2\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3089] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3090] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3091] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3092] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3093] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3094] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3095] "<div class=\"h5\">"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3096] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3097] "<span class=\"ptname \"><a href=\"http://hcm.cgu.edu.tw/bin/home.php?Lang=zh-tw\" target=\"_blank\"  title=\"醫務管理學系/研究所\" >醫務管理學系/研究所</a></span>"                                                                                                                                                                                                                                                                                          
## [3098] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3099] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3100] "<div class=\"message\">"                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3101] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3102] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3103] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3104] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3105] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3106] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3107] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3108] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3109] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3110] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3111] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3112] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3113] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3114] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3115] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3116] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3117] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3118] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3119] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3120] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3121] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3122] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3123] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3124] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3125] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3126] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3127] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3128] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3129] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3130] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3131] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3132] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [3133] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [3134] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [3135] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3136] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3137] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3138] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3139] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3140] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3141] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3142] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3143] "<tr class=\"row_1\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3144] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3145] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3146] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3147] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3148] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3149] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3150] "<div class=\"h5\">"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3151] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3152] "<span class=\"ptname \"><a href=\"http://cm-sb.cgu.edu.tw/bin/home.php?Lang=zh-tw\" target=\"_blank\"  title=\"商管專業學院\" >商管專業學院</a></span>"                                                                                                                                                                                                                                                                                                      
## [3153] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3154] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3155] "<div class=\"message\">"                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3156] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3157] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3158] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3159] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3160] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3161] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3162] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3163] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3164] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3165] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3166] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3167] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3168] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3169] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3170] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3171] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3172] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3173] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3174] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3175] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3176] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3177] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3178] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3179] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3180] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3181] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3182] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3183] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3184] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3185] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3186] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3187] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [3188] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [3189] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [3190] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3191] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3192] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3193] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3194] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3195] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3196] "<tr class=\"row_2\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3197] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3198] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3199] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3200] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3201] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3202] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3203] "<div class=\"h5\">"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3204] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3205] "<span class=\"ptname \"><a href=\"http://cmphd.cgu.edu.tw/bin/home.php?Lang=zh-tw\" target=\"_blank\"  title=\"企業管理研究所博士班\" >企業管理研究所博士班</a></span>"                                                                                                                                                                                                                                                                                      
## [3206] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3207] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3208] "<div class=\"message\">"                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3209] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3210] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3211] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3212] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3213] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3214] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3215] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3216] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3217] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3218] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3219] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3220] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3221] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3222] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3223] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3224] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3225] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3226] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3227] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3228] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3229] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3230] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3231] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3232] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3233] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3234] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3235] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3236] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3237] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3238] "</table>"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3239] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3240] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3241] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3242] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3243] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3244] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3245] "\t</div></div></div>"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3246] "\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3247] "\t<div class=\"md_bottom\"><div class=\"mb_03\"><div class=\"mb_02\"><div class=\"mb_01\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" alt=\"\"/></div></div></div></div>"                                                                                                                                                                                                                                                                             
## [3248] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3249] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3250] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3251] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3252] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3253] "\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3254] "\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3255] "\t\t\t\t\t   "                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3256] "\t\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3257] "\t\t\t\t\t\t<div id=\"Dyn_3_4\" class=\"M10344 M10344_66  \">"                                                                                                                                                                                                                                                                                                                                                                                               
## [3258] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3259] "<div class=\"module module-link md_style1 self\">"                                                                                                                                                                                                                                                                                                                                                                                                           
## [3260] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3261] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3262] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3263] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3264] "<div class=\"md_top show_title \"><div class=\"mt_03\"><div class=\"mt_02\"><div class=\"mt_01\">"                                                                                                                                                                                                                                                                                                                                                           
## [3265] "\t<div class=\"h3\">行事曆</div>"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3266] "</div></div></div></div>"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3267] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3268] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3269] "\t<div class=\"md_middle\">"                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3270] "\t<div class=\"mm_03\"><div class=\"mm_02\"><div class=\"mm_01\">"                                                                                                                                                                                                                                                                                                                                                                                           
## [3271] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3272] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3273] "\t\t<table summary=\"list\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\" class=\"baseTB list_TIDY\">"                                                                                                                                                                                                                                                                                                                                     
## [3274] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3275] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3276] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3277] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3278] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3279] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3280] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3281] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3282] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3283] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3284] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3285] "\t<td class=\"tl\"><div class=\"tl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [3286] "\t<td class=\"tc\"><div class=\"tc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [3287] "\t<td class=\"tr\"><div class=\"tr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                    
## [3288] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3289] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3290] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3291] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3292] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3293] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3294] "<tr class=\"row_1\">"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3295] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3296] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3297] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3298] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3299] "<td class=\"ml\"><div class=\"ml\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3300] "<td class=\"mc\" width=\"100%\">"                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3301] "<div class=\"h5\">"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3302] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3303] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3304] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3305] "<span class=\"ptname \"><a href=\"http://academic.cgu.edu.tw/files/15-1001-30564,c4800-1.php\" target=\"_blank\"  title=\"長庚大學行事曆\"  >長庚大學行事曆</a></span>"                                                                                                                                                                                                                                                                                      
## [3306] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3307] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3308] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3309] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3310] "</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3311] "<td class=\"mr\"><div class=\"mr\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3312] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3313] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3314] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3315] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3316] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3317] "<tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3318] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3319] "<td class=\"bl\"><div class=\"bl\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3320] "<td class=\"bc\"><div class=\"bc\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3321] "<td class=\"br\"><div class=\"br\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" border=\"0\" alt=\"\" width=\"2px\" height=\"2px\" /></div></td>"                                                                                                                                                                                                                                                                                                      
## [3322] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3323] "</tr>"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3324] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3325] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3326] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3327] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3328] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3329] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3330] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3331] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3332] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3333] "</table>"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3334] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3335] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3336] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3337] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3338] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3339] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3340] "\t</div></div></div>"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3341] "\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3342] "\t<div class=\"md_bottom\"><div class=\"mb_03\"><div class=\"mb_02\"><div class=\"mb_01\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" alt=\"\"/></div></div></div></div>"                                                                                                                                                                                                                                                                             
## [3343] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3344] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3345] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3346] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3347] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3348] "\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3349] "\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3350] "\t\t\t\t\t   "                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3351] "\t\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3352] "\t\t\t\t\t\t<div id=\"Dyn_3_5\" class=\"M38 M38_0  \">"                                                                                                                                                                                                                                                                                                                                                                                                      
## [3353] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3354] "<div class=\"module module-uptime md_style99\">"                                                                                                                                                                                                                                                                                                                                                                                                             
## [3355] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3356] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3357] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3358] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3359] "<div class=\"md_top show_title \"><div class=\"mt_03\"><div class=\"mt_02\"><div class=\"mt_01\">"                                                                                                                                                                                                                                                                                                                                                           
## [3360] "\t<div class=\"h3\">最後更新日期</div>"                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3361] "</div></div></div></div>"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3362] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3363] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3364] "<div class=\"md_middle\"><div class=\"mm_03\"><div class=\"mm_02\"><div class=\"mm_01\">"                                                                                                                                                                                                                                                                                                                                                                    
## [3365] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3366] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3367] "2016-03-11  "                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3368] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3369] "</div></div></div></div>"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3370] "<div class=\"md_bottom\"><div class=\"mb_03\"><div class=\"mb_02\"><div class=\"mb_01\"><img src=\"http://im.cgu.edu.tw/images/clear.gif\" alt=\"\"/></div></div></div></div>"                                                                                                                                                                                                                                                                               
## [3371] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3372] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3373] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3374] "<!-- generated at Fri Mar 11 2016 10:57:04 --></div>"                                                                                                                                                                                                                                                                                                                                                                                                        
## [3375] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3376] "\t\t\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3377] "\t\t\t\t\t<div class=\"wrap\"></div>"                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3378] "\t\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3379] "\t\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3380] "\t\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3381] "\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3382] "\t\t\t\t<div class=\"col_bottom\">"                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3383] "\t\t\t\t\t<div class=\"cb_03\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3384] "\t\t\t\t\t<div class=\"cb_02\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3385] "\t\t\t\t\t<div class=\"cb_01\">"                                                                                                                                                                                                                                                                                                                                                                                                                             
## [3386] "\t\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3387] "\t\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3388] "\t\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3389] "\t\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3390] "\t\t\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3391] "\t\t\t</td>"                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [3392] "\t\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3393] "\t \t"                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [3394] "\t\t</tr></tbody>"                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3395] "\t\t</table>"                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [3396] "\t\t<!-- Box Table End -->"                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [3397] "\t\t</div></div>"                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3398] "\t\t<!-- Box Div End -->"                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3399] "\t</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [3400] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3401] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3402] " \t"                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3403] "   "                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3404] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3405] " \t"                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3406] "   "                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3407] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3408] " \t"                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3409] "   "                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3410] "\t\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3411] " \t"                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3412] "   "                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3413] "\t"                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3414] "\t<!-- Body Row End -->"                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3415] "\t</div></div>"                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3416] "\t<!-- MainBody End -->"                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3417] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3418] "\t<div class=\"mainfoot\"><div class=\"mainfoot-inner\">"                                                                                                                                                                                                                                                                                                                                                                                                    
## [3419] "\t<div class=\"foot_03\"><div class=\"foot_02\"><div class=\"foot_01\">"                                                                                                                                                                                                                                                                                                                                                                                     
## [3420] "   <div id=\"Dyn_counter\" class=\"M4 M4_0  \"><div class=\"module-loading\"><div class=\"md_top\"><div class=\"mt_03\"><div class=\"mt_02\"><div class=\"mt_01\"><h3></h3></div></div></div></div><div class=\"md_middle\"><div class=\"mm_03\"><div class=\"mm_02\"><div class=\"mm_01\">數據載入中...</div></div></div></div><div class=\"md_bottom\"><div class=\"mb_03\"><div class=\"mb_02\"><div class=\"mb_01\"></div></div></div></div></div></div>"
## [3421] "<script language=\"javascript\" >"                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3422] "divOs.openSajaxUrl(\"Dyn_counter\",'/bin/showmodule.php?Mo=4&Type=counter&Nbr=&Seq=&Page=&Col=3&Row=5&Param=&O=1055&Lang=zh-tw&PageLang=zh-tw');"                                                                                                                                                                                                                                                                                                            
## [3423] "</script><noscript>Your browser does not support JavaScript!</noscript>"                                                                                                                                                                                                                                                                                                                                                                                     
## [3424] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3425] "\t<div id=\"Dyn_footer\">"                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3426] "<div class=\"copyright\"><p align=\"center\">地址:桃園市龜山區文化一路259號&nbsp;&nbsp;電話:03-211-8800&nbsp; 分機&nbsp;5812 &nbsp;傳真:03-211-8020 電子信箱:<a href=\"mailto:csim@mail.cgu.edu.tw\">csim@mail.cgu.edu.tw</a><br />"                                                                                                                                                                                                                     
## [3427] "© 2015 網站內容為長庚大學所有,未經允許請勿轉載</p></div>"                                                                                                                                                                                                                                                                                                                                                                                                   
## [3428] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3429] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3430] "\t</div></div></div>"                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [3431] "\t</div></div>"                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [3432] "\t<!-- Foot End -->"                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3433] "</div></div></div>"                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [3434] "</div>"                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [3435] "<!-- Outer Container End  -->"                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3436] ""                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [3437] "<script type=\"text/javascript\">"                                                                                                                                                                                                                                                                                                                                                                                                                           
## [3438] "$(document).ready(function(){"                                                                                                                                                                                                                                                                                                                                                                                                                               
## [3439] "\t$('body').addClass('page_bg_' + Math.ceil(Math.random() * 5));"                                                                                                                                                                                                                                                                                                                                                                                            
## [3440] "});"                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [3441] "</script>"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [3442] "</body>"                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3443] "</html>"                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [3444] "<!-- generated at Thu Mar 10 2016 15:03:53 -->"

用XML工具讀取網頁 (XML package)

url <- "http://im.cgu.edu.tw/bin/home.php"
html <- htmlTreeParse(url, useInternalNodes=T)
xpathSApply(html, "//title", xmlValue)
## [1] "長庚大學 資訊管理學系 "
xpathSApply(html, "//span[@class='ptname ']", xmlValue)
##  [1] "畢業專題成果展"       "碩士班計畫書審查"     "畢業校友資料登錄"    
##  [4] "教育訓練資訊網"       "長庚大學首頁"         "校務資訊系統"        
##  [7] "國內資管系所"         "碩博士論文網"         "資管系內部行政系統"  
## [10] "資管系分機表"         "資管系學會"           "TA課後輔導值班表"    
## [13] "學生webmail"          "教職員webmail"        "工商管理學系/研究所" 
## [16] "工業設計學系/研究所"  "管理學院"             "醫務管理學系/研究所" 
## [19] "商管專業學院"         "企業管理研究所博士班" "長庚大學行事曆"

GET from the httr package

html2 = GET(url)
content2 = content(html2,as="text")
## No encoding supplied: defaulting to UTF-8.
parsedHtml = htmlParse(content2,asText=TRUE)
xpathSApply(parsedHtml, "//span[@class='ptname ']", xmlValue)
##  [1] "畢業專題成果展"       "碩士班計畫書審查"     "畢業校友資料登錄"    
##  [4] "教育訓練資訊網"       "長庚大學首頁"         "校務資訊系統"        
##  [7] "國內資管系所"         "碩博士論文網"         "資管系內部行政系統"  
## [10] "資管系分機表"         "資管系學會"           "TA課後輔導值班表"    
## [13] "學生webmail"          "教職員webmail"        "工商管理學系/研究所" 
## [16] "工業設計學系/研究所"  "管理學院"             "醫務管理學系/研究所" 
## [19] "商管專業學院"         "企業管理研究所博士班" "長庚大學行事曆"

讀取需要帳號密碼的網頁-一定要httr

pg2 = GET("http://httpbin.org/basic-auth/user/passwd",
    authenticate("user","passwd"))
pg2
## Response [http://httpbin.org/basic-auth/user/passwd]
##   Date: 2016-03-27 06:29
##   Status: 200
##   Content-Type: application/json
##   Size: 47 B
## No encoding supplied: defaulting to UTF-8.
## {
##   "authenticated": true, 
##   "user": "user"
## }
names(pg2)
##  [1] "url"         "status_code" "headers"     "all_headers" "cookies"    
##  [6] "content"     "date"        "times"       "request"     "handle"

參考資源

Other Data

  • MySQL RMySQL
  • HDF5 rhdf5
  • Weka foreign
  • Stata foreign
  • SPSS Hmisc
  • SAS Hmisc
  • GIS rgdal
  • Images jpeg
  • Music tuneR

Data Manipulation

Start with reshaping

http://www.statmethods.net/management/reshape.html

if (!require('reshape2')){
    install.packages("reshape2")
    library(reshape2)
}
head(mtcars)
##                    mpg cyl disp  hp drat    wt  qsec vs am gear carb
## Mazda RX4         21.0   6  160 110 3.90 2.620 16.46  0  1    4    4
## Mazda RX4 Wag     21.0   6  160 110 3.90 2.875 17.02  0  1    4    4
## Datsun 710        22.8   4  108  93 3.85 2.320 18.61  1  1    4    1
## Hornet 4 Drive    21.4   6  258 110 3.08 3.215 19.44  1  0    3    1
## Hornet Sportabout 18.7   8  360 175 3.15 3.440 17.02  0  0    3    2
## Valiant           18.1   6  225 105 2.76 3.460 20.22  1  0    3    1

Melting data frames

http://www.statmethods.net/management/reshape.html

mtcars$carname <- rownames(mtcars)
carMelt <- melt(mtcars,id=c("carname","gear","cyl"),
                measure.vars=c("mpg","hp"))
head(carMelt,n=3)
##         carname gear cyl variable value
## 1     Mazda RX4    4   6      mpg  21.0
## 2 Mazda RX4 Wag    4   6      mpg  21.0
## 3    Datsun 710    4   4      mpg  22.8
tail(carMelt,n=3)
##          carname gear cyl variable value
## 62  Ferrari Dino    5   6       hp   175
## 63 Maserati Bora    5   8       hp   335
## 64    Volvo 142E    4   4       hp   109

Casting data frames -1

Casting data frames -2

More information